null不是Object。 RNGestureHandlerModule方向

问题描述 投票:0回答:2

我有一个反应本机应用程序。突然间我开始收到这个错误。我没有改变react-navigation中的任何文件。即使我没有更改App.js或任何导航文件中的任何内容,为什么会出现此错误,

react-native react-navigation
2个回答
0
投票

重新安装react-native-gesture-handler然后链接它。


0
投票

如果链接不起作用,那么你应该这样做(对我工作):

  1. 取消链接处理程序手势
  2. 卸载react-navigation-gesture-handler
  3. 卸载反应导航

react-native unlink react-native-gesture-handler

npm卸载react-navigation

npm卸载react-navigation-gesture-handler

请按以下步骤操作:

npm install --save react-navigation

npm install --save react-native-gesture-handler

react-native link react-native-gesture-handler

我做错了,是我没有' - 保存'手势处理程序。


0
投票

安装/卸载解决方案对我不起作用。我在ios项目中只用了一个“pod install”解决了这个问题(我认为RNGestureHandler已经安装但不是没有,我不知道为什么)。之后我能够在ios模拟器中运行我的项目。

enter image description here

© www.soinside.com 2019 - 2024. All rights reserved.