Nested list example not working
Describe the bug The nested example from the readme is not working: https://snack.expo.dev/@computerjazz/draggable-flatlist-examples
To Reproduce Access the link example. Not working on android physical and emulator.
Upvote - tried the snack today and it simply crashes in expo go
Yep, not working! Upgraded all the packages and crashes on device.
it is most likely that the snack example is using expo > 48 on the website and the example is using expo 48, which can cause this. you will have to set expo version to 48 to be able to run it.
as for mobile, expo snack needs to be a certain version (max supported expo go app version 2.28.7) to be able to run expo 48 code, for which you can go to Expo Go
you can very well test it out on simulators by following below steps:
- Delete
yarn.lockandnode_modules - Run
yarnwithinExamplefolder - Run
npx expo install --fixwithinExamplefolder - Wrap root app in
<GestureHandlerRootView style={{ flex: 1 }}></GestureHandlerRootView>in the fileExample/App.tsx - Change
makeUrltocreateUrlinExample/navigation/LinkingConfiguration.ts - Run
yarn ios