Harvey Appleton
Harvey Appleton
Also, you can fix the nested virtualized lists error by using custom renderer ([docs here](https://jeremybarbet.github.io/react-native-modalize/#/PROPS?id=customrenderer)) ```tsx ``` Now I have react navigation working inside the modal, and no errors :)
adding `` inside my `` on my card render solved it for me without having to patch the package, thanks!!! 🚀
It's a bodgey workaround but this is how I achieved it to make sure it dismiss the window and go back only if you are at the top of the...
For those using typescript, create a `global.d.ts` file in your `src` folder with the following contents to fix the Types definition: ```tsx // SwiperProps missing dragStart and dragEnd props declare...
I looked into using `firebase-js-sdk` alongside, but I think the issue is that on React Native, the `fetch` implementation doesn't support `ReadStream`. Seems like a common problem. However I found...
Still requires attention
Won't work for everyone but my horrible workaround in case it helps someone: (basically using `onPageChanged` to grab the total number of pages instead of `onLoadComplete`) ```tsx {PLATFORM === 'android'...