Image
该应用程序在尝试导航后崩溃,而使用 expo 时它不会崩溃,它仅在生产模式下并使用通过 Expo 构建的 apk
我已经删除并安装了模块,并尝试降级和更新反应导航
"react": "16.8.3",
"react-native": "https://github.com/expo/react-native/archive/sdk-34.0.0.tar.gz",
"react-native-datepicker": "^1.7.2",
"react-native-dialog": "^5.5.0",
"react-native-dialog-input": "^1.0.7",
"react-native-root-toast": "^3.0.2",
"react-native-snackbar": "^0.5.5",
"react-native-table-component": "^1.2.0",
"react-navigation": "^3.3.0",
"react-redux": "^6.0.1",
不受支持的顶级事件类型"onGestureHandlerStateChange"已调度
按照以下步骤操作:
- 删除
node_modules
目录和package-lock.json
文件 - 将
react-navigation
版本修改为在包中^3.11.1
.json - 运行
npm install
- 运行
expo install react-native-gesture-handler react-native-reanimated react-navigation
- 在
expo start -c
上运行
这应该设置一个兼容版本的反应导航并解决您的手势问题。
希望这有帮助!