Closed KennyMwendwaX closed 7 months ago
Hi! I've checked your repo and everything looks fine - I've managed to run the app. There were some problems though - missing GestureHandlerRootView
and flushOperationsError
- you're using Gesture Handler 2.16.0, but expected version in your expo project is 2.14.0 (and this matters, because there were changes in the native code).
Have you tried to remove node_modules
and reset cache?
Description
I am using Expo and installed the package using npm and tried to render a list using FlatList,
Error output on the terminal:
Steps to reproduce
export default function OrdersScreen() { return ( <> <FlatList data={orders} contentContainerStyle={{ gap: 10, padding: 10 }} renderItem={({ item }) => }
/>
</>
);
}