「Javascript/reactnative/helloworld」の版間の差分
提供: 初心者エンジニアの簡易メモ
(→react-native-cliを使ったhelloworld) |
(→実行) |
||
行23: | 行23: | ||
===実行=== | ===実行=== | ||
+ | cd hello | ||
react-native run-android # android | react-native run-android # android | ||
react-native run-ios # ios | react-native run-ios # ios |
2020年7月13日 (月) 17:04時点における版
expoを使ったhelloworld
expo init Helloworld
以下構成で作成される
├── App.js ├── app.json ├── assets │ ├── favicon.png │ ├── icon.png │ └── splash.png ├── babel.config.js ├── package.json └── yarn-error.log
react-native-cliを使ったhelloworld
$ react-native init hello
以下構成で作成される
実行
cd hello react-native run-android # android react-native run-ios # ios