ToDoList App[Beginner] with React Native[Expo]
In previous blog, we talked about what are the basics of React Native and how to set up the Environment for development of React Native. In this blog, using the same knowledge i will be creating a simple ToDoList app where user can enter their daily needs, mark them as complete and can delete it also. So let's get Started!!!!! Setting up Expo Before starting anything, we will have to setup Expo as we are using this instead of react native CLI. First open the VScode terminal or standard terminal. Run the following command: npm install --global expo-cli These commands can also be found at expo official documentation page, which will be linked below. Now to create the project, run the following command: npm create-expo-app ToDoList This command will create the basic app structure where we will be working on App.js in this blog. Make sure, you have simulator installed on your system or you have physical device with you. If not, refer to previous blog linked down below. Structure of App...