react-nativeでナビゲートを使用しようとします。追加しました:npm install --save react-navigation
しかし、それは私にこのようなエラーを与えます:
エラー:バンドルに失敗しました:エラー:react-native-gesture-handler
からモジュールC:\reactnative\proejectName\node_modules\@react-navigation\native\src\Scrollables.js
を解決できません:モジュールreact-native-gesture-handler
がHasteモジュールマップに存在しません
これはインデックスです:
import { AppRegistry } from 'react-native';
import App from './App';
import { name as appName } from './app.json';
AppRegistry.registerComponent(appName, () => App);
これはapp.jsです
import React from 'react';
import { createStackNavigator, createAppContainer, } from 'react-navigation';
import First from './src/Components/First';
import DescriptionPage from './src/Components/DescriptionPage';
const Navigation = createStackNavigator({
First: {
screen: First,
},
DescriptionPage: {
screen: DescriptionPage,
},
});
const App = createAppContainer(Navigation);
export default App;
これはpackage.json:です
{
"name": "ProjectName",
"version": "0.0.1",
"private": true,
"scripts": {
"start": "node node_modules/react-native/local-cli/cli.js start",
"test": "jest"
},
"dependencies": {
"react": "16.8.3",
"react-native": "0.59.1",
"react-native-sqlite-storage": "^3.3.10",
"react-navigation": "^3.5.1"
},
"devDependencies": {
"@babel/core": "7.4.0",
"@babel/runtime": "7.4.2",
"babel-jest": "24.5.0",
"eslint-config-rallycoding": "^3.2.0",
"jest": "24.5.0",
"metro-react-native-babel-preset": "0.53.1",
"react-test-renderer": "16.8.3"
},
"jest": {
"preset": "react-native"
}
}
同じ問題がありましたが、私の場合、react-native-gesture-handler自体のインストールが失敗していました。反応ネイティブバージョン0.61.5を使用していました。いくつかの理由により、最新バージョンのreact-native-gesture-handlerがプロジェクトにインストールされませんでした。エラーを解決するには、react-native-gesture-handlerの特定のバージョンをインストールします。
npm install --save [email protected]
お役に立てれば。
同じ問題があった。それを解決する:
npm uninstall react-native-gesture-handler --save
npm install react-native-gesture-handler --save
macを実行している場合は、次の手順を実行してください。
node_modules
およびpackage-lock.json
npm install
npm install --save react-navigation
npm install --save react-native-gesture-handler
cd ios
pod install
そして再び走る