This is a React Native project/
UNO.mp4
- Clone repository
- Run
yarn install
- React Native
- Styled Components
.
├── android # All the specific native code for Android.
├── ios # All the specific native code for iOS.
├── src
├── assets # All public files.
├── components # The stateless reusable components.
├── constants # Used to store colours, common types and fonts.
├── contexts # For React Context files. I usually prefer the Context API instead of Redux or some more convoluted solutions.
├── mooks # Fake data.
├── routes # The routes configuration files.
├── screens # The views for the project. Use one per url to keep the code tidy.
├── types # Models and types of data.
└── README.md # The first page the user will see when visiting the repo.