How to setup React Native and create a simple To-Do App

1 · Alex Adam · April 23, 2022, 9:53 a.m.
Set up the development environment by installing Expo CLI (https://reactnative.dev/docs/environment-setup)yarn global add expo-cliCreate a new project (app):expo init todo-app# select "blank (TypeScript)"Start the development server:cd todo-appyarn start# press w to open the web appCreate a To-Do appPrerequisitesInstall a checkbox component:yarn add react-native-bouncy-checkboxThen create the following folders & files structure:./todo-app/ ... models/ todo.model.ts components/ to...