开发者问题收集

React Native 错误:TypeError:null 不是对象 _RNGestureHandlerModule.default.Direction

2019-11-13
3073

我尝试了很多方法来修复这个错误,但都失败了。

  • FOR ANDROID NOT IOS.

_RNGestureHandlerModule.default.Direction

我尝试了 android。我发现了 react-native-gesture-handler 的错误,但我不知道如何修复它。

我正在一步一步地遵循这个说明 https://reactnavigation.org/docs/en/getting-started.html

我尝试链接 react-native-gesture-handler 手册。也尝试过取消链接。 我制作了 react-native.config.js ,代码为

exports = {
    dependencies: {
      'react-native-gesture-handler': {
        platforms: {
          android: null,
          ios: null,
        },
      },
    },
  };

我正在使用系统:

 OS: Linux 5.3 Arch Linux undefined
    CPU: (12) x64 Intel(R) Core(TM) i7-8700K CPU @ 3.70GHz
    Memory: 16.06 GB / 31.21 GB
    Shell: 5.0.11 - /bin/bash
  Binaries:
    Node: 12.13.0 - /usr/bin/node
    Yarn: 1.19.1 - /usr/bin/yarn
    npm: 6.12.1 - /usr/bin/npm
    Watchman: 4.9.0 - /usr/local/bin/watchman
  npmPackages:
    react: 16.9.0 => 16.9.0 
    react-native: 0.61.4 => 0.61.4 
  npmGlobalPackages:
    react-native-cli: 2.0.1

"react-navigation": "^2.18.2",
"react-navigation-stack": "^1.10.3"
  • FOR ANDROID NOT IOS.

_RNGestureHandlerModule.default.Direction,我写了关于 react-native-gesture-handler Github 的 bug

2个回答

您只需简单地注释行: // export { default as Directions } from './Directions';

在您的项目中 -> node_modules -> react-native-gesture-handler -> GestureHandler.js

我想它希望对您有所帮助

Đức Silva
2019-11-13

请尝试

Pod update

它对我有用

Pankaj Bhalala
2020-02-25