Logan Gibson
Logan Gibson
Experiencing this too. Disabled the extension for now.
Came here to report the same thing. I fixed my issue by using the `waitFor` from `@testing-library/react`. It [checks for fake timers](https://github.com/testing-library/dom-testing-library/blob/main/src/wait-for.js#L52).
While we wait... Either `// @ts-expect-error` it or create a `.d.ts` file and add this to it. ``` import {ReactNode} from 'react' declare module 'react-native-swipe-list-view' { interface IPropsSwipeRow { children:...
> @kneza23 @sxyshirly @nofacez > > If you are using overflow property inside a scroll view or flatlist, add this prop to your scrollview or flatlist > > `removeClippedSubviews(false)` >...
I'm having the same issue. Lots of signs point to the use of `localhost`. I tried `127.0.0.1` but no luck. Using my local IP address did however work. iOS works...
I fixed this with the hack recommended [issue 131](https://github.com/proyecto26/react-native-inappbrowser/issues/131#issuecomment-663492025). It's not great but does seem to work. For the record, I got it working without the catch but I added...
Yeah it gets overwritten with `react-native start` here: https://github.com/facebook/react-native/blob/0384caad3458f7658e68653a0ab62fd6cc3e4483/packages/community-cli-plugin/src/commands/start/runServer.js#L148 Code for metro is all over the place in many repos.