React Native boilerplate with everything needed to kickstart a new mobile application with a well structured application code.
- React Native CLI typescript template
- UI Kitten
- Redux
- React Navigation
- Styled Components
Install iOS and Android dependencies https://facebook.github.io/react-native/docs/getting-started
# Clone the repo
git clone git@github.com:rjmreis/exotic-shorthair.git
# Navigate to folder and Install dependencies
cd rn-starter && yarn
iOS
yarn ios
Android
yarn android
.
├── android * Android project and build
├── ios * iOS project and build
├── jest * Jest setup
├── scripts * Project scripts
├── src/
| ├── __tests__/ * Jest tests
| ├── components/ * Shared components
| ├── screens/ * Screen components
| ├── state/ * Redux state
| ├── app.tsx * Root React App
| └── navigation.tsx * React Navigation
└── ... * Boilerplate files