In root folder, run yarn install
There are 2 ways to build and run the app locally:
- Via official IDEs: Xcode (iOS), Android Studio (Android)
- Via command line: yarn iosandyarn android
If you have an Android device, you can also install the release apk file to try out the app.
- Create/update/remove task
- View all pending & completed tasks
- All tasks are persisted throughout app session
.
├── assets              # images, animations 
├── navigators          # navigation system
├── store               # redux store and reducers, actions, sagas (grouped by features)
├── styles              # design system: color, font, size, dimension
├── utils               # utilities: time, id,...
└── views               # UI components (grouped by navigation routes)
actions                 # redux actions
selectors               # redux selectors
styles                  # design system
views                   # UI components
types                   # global typescript types
utils                   # utilities
