foloinfo

Results 12 comments of foloinfo

I was in the same situation that `Adsense.Google` is trying to `window.adsbygoogle.push({})` after the component was unmouted. This happens when you quickly go back and forth between screens (I use...

I'm having the same issue. Adding `transform: [{ scaleY: isActive ? 1 : -1 }]` will help to render the item correctly, but it seems like the position of the...

Link above to the docs didn't navigate to the #id of the page so here is the code sample from the docs for easier reference. `path: 'user/:id/:section?'` add `?` to...

I had the same issue on Android devices and accidentaly realized that it works as expected when I use state to mount the TextInput right after mouting the screen component....

I have the same issue (expo SDK 38). I ended up reverting to clipboard from react-native for now. `import { Clipboard } from 'react-native'` updated: You can use `import *...

I had the same issue. It seems like `{ type: 'RESET' }` will remove the `_persistor` state and it causes redux-persist not to persist anymore. I found it will be...

Same issue here. It seems like this problem happens when a device is really stressed by some large payload. I think `JSON.stringify` used inside `defaultSerialize` function here https://github.com/rt2zz/redux-persist/blob/master/src/createPersistoid.js#L140 ``` function...

Thanks to all the comments above. It seems like the number of issues are related. Especially as @vovkasm mentioned, multiple serializations cause large memory usage. A solution from @brsaylor2 gave...

I have the same problem. We block the reservation slot for few minues and cancel the payment intent from server when we could not confirm the payment has complete within...

I had the same problem with SectionList. In my case, the problem was that I forgot to clear the InteractionManager after `createInteractionHandle()`. I am using react-native 0.71.6 with Expo 48....