Javascript/reactnative/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
QRコードをexpoアプリで読み取ったところ、アプリを表示できた。
参考
react-native-cliを使ったhelloworld
$ react-native init hello
以下構成で作成される
実行
cd hello react-native run-android # android react-native run-ios # ios