React Native Engineering Configuration
Branch Name | Feature | Stage |
---|---|---|
[master][b-master] | React Navigation + Redux | 🚧 |
[rn][b-rn] | Basic React Native | ✅ |
Use this template or clone this repository
$ npm i # Install
$ npm start # Start Server
$ npm run android # Run on Android
$ npm run ios # Run on ios
{
"react": "16.13.1",
"react-native": "0.63.2"
}
"~/*": ["./src/*"],
"@*": ["./*"],
"@test/*": ["./__test__/*"]
├── LICENSE
├── README.md
├── jsconfig.json|tsconfig.json # define a JS|TS root project
├── package.json # npm
├── index.js # main
├── src/ # source code
│ ├── @types/ # TypeScript Declaration Files
│ ├── components/
│ ├── screens/
│ ├── utils/
│ ├── routes/ # pages/view
│ ├── assets/
│ │ ├── fonts/
│ │ └── images/
│ ├── index.html
│ └── index.js # entry file
├── docs/
│ ├── FAQ.md
│ └── README.md
├── __test__/ # test case
└── config/