https://github.com/user-attachments/assets/19af0b3d-7792-404d-92bf-95ee0d1b6fdb - Xcode: version: 15.4/15F31d - iOS: version: 18.3 - react-native: Installed: 0.77.0 As the video showed, I directly copied the code from `DraggableGridExample` and saved it as a component. I used it in my empty example App: ```javascript return ( <SafeAreaView> <GestureHandlerRootView style={{ flexGrow: 1, alignItems: 'stretch', justifyContent: 'center', flexDirection: 'row', }}> <DraggableGridExample /> </GestureHandlerRootView> </SafeAreaView> ); ```