Agora is a little todo list app made in React Native for practicing its main basic features.
To execute the project, you need to have installed NodeJS, its package manager NPM, and Expo Go (if you want to execute it on an Android device) or a phone emulator (if you will run it on a computer).
If you want to test the app out, you can download its source code here on Github. The steps are following:
- First of all, you must clone or download the repository;
- After that, in the root of the downloaded folder, install the node dependencies with NPM:
npm install
- Once that's over, you are free to run the project with:
npm start
- To access the running project, you are going to need either to scan the QR code with your phone (using the Expo Go app, in case of Android), or to execute it with a phone emulator on the computer.
This project was written by Nadjiel following The Net Ninja's tutorial on Youtube.
More precisely, the videos followed for accomplishing this project were from React Native Tutorial #9 - Todo App (part 1) to React Native Tutorial #15 - Icons & More Flexbox.
The source code made by The Net Ninja can be found in this repository: github.com/iamshaunjp/react-native-tutorial.