facebook twitter hatena line email

Javascript/reactnative/helloworld

提供: 初心者エンジニアの簡易メモ
2020年7月13日 (月) 17:14時点におけるAdmin (トーク | 投稿記録)による版 (expoを使ったhelloworld)

移動: 案内検索

expoを使ったhelloworld

expo init Helloworld

以下構成で作成される

├── App.js
├── app.json
├── assets
│   ├── favicon.png
│   ├── icon.png
│   └── splash.png
├── babel.config.js
├── package.json
└── yarn-error.log

実行しQRコード表示

yarn start

react-native-cliを使ったhelloworld

$ react-native init hello

以下構成で作成される


実行

cd hello
react-native run-android # android
react-native run-ios # ios

参考

https://snova301.hatenablog.com/entry/2019/05/05/231232