参考サイトを見ながらRNの勉強をしております。
こちらの記事がx3系統で書かれている見たいで、
参考サイト
https://note.com/cube0529/n/nd9f242d4d43b
https://qiita.com/shinnoki/items/e32e20b812606ce7219c
x4系統に書き直したところエラーが取れません。
こちら原因がわかる方おりませんでしょうか。
import { createStackNavigator } from 'react-navigation-stack'; に変更
→下記のエラーが出る
undefined Unable to resolve module react-native-safe-area-context
from node_modules/react-navigation-stack/lib/module/vendor/views/Stack/StackView.js
: react-native-safe-area-context could not be found within the project.
react-native-safe-area-contextをnpm iでインストール
→下記のエラーがでる
エラー内容
If you are sure the module exists, try these steps:
- Clear watchman watches: watchman watch-del-all
- Delete node_modules: rm -rf node_modules and run yarn install
- Reset Metro's cache: yarn start --reset-cache
- Remove the cache: rm -rf /tmp/metro-*
Unable to resolve "@react-native-community/masked-view" from "node_modules/react-navigation-stack/lib/module/vendor/views/MaskedView.native.js"
Failed building JavaScript bundle.
おそらく現在、4.9を使っているのですが、react-navigation-stackで
createStackNavigatorを呼び出すとエラーが出てしまいます。
こちら3系統のインストール方法がわからず、
現在だと5も出てきたようです。
React
1 2// エラーが出る 3// import { createStackNavigator } from 'react-navigation-stack'; 4 5export default class App extends React.Component { 6 7 8 render() { 9 10 /* エラーが出る 11 12 const HomeStack1 = createStackNavigator({ // ←追記部分 13 home: { screen: HomeScreen }, 14 detail: { screen: DetailScreen } 15 }); 16*/ 17
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。
2020/04/06 07:50