Skip to content

Latest commit

 

History

History
51 lines (47 loc) · 960 Bytes

README.md

File metadata and controls

51 lines (47 loc) · 960 Bytes

Instructions

When you download after you need to run these 3 commands:

yarn install
yarn start --reset-cache
cd ios/ && pod install
yarn ios

or

yarn android

Project structure

src/
├── app/
│   ├── assets/
│   │   ├── fonts/
│   │   ├── images/
│   │   └── ...
│   ├── components/
│   ├── localization/
│   ├── navigators/
│   │   ├── RootNavigator
│   │   ├── MainNavigator
│   │   └── ...
│   ├── screens/
│   │   ├── Screen1/
│   │   ├── Screen2/
│   │   └── ...
│   ├── services/
│   ├── utils/
│   ├── store/
│   │   ├── actions/
│   │   ├── reducers/
│   │   ├── selectors/
│   │   ├── types/
│   │   └── ...
│   ├── themes/
│   ├── App.tsx
│   └── ...
└── ...