$ git clone [email protected]:PhoebePan/AwesomeProject2-.git
$ cd AwesomeProject2
$ npm install
$ react-native run-android
If you want to create a new App by yourself.
You can try the following step.
For Starter:
- init a new react-native App by using react-native-cli
$ react-native init myApp
- run app on your Android Simulator
$ react-native run-android
- install react-navigation
$ npm install --save react-navigation
- install react-native-router-flux
$ npm install --save react-native-router-flux
- Happy Coding with React Native!!! 🐳 🐳 🐳
!Attention
If you have red screen with evaluating '(typeof Symbol === 'function' ? ....
issue
$ npm install --save-dev babel-polyfill
and then import following in your App
import "babel-polyfill";