Skip to content

Latest commit

 

History

History
34 lines (24 loc) · 1.18 KB

README.md

File metadata and controls

34 lines (24 loc) · 1.18 KB

UNO Calculator

This is a React Native project/

DEMO

UNO.mp4

Getting Started

  • Clone repository
  • Run yarn install

Tech Stack

  • React Native
  • Styled Components

Folder Structure

.
├── 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.