1st Phase of App development 1. Setup the Project 2. Setup the directory structure of the project. Make sure screens, components, api-services, styles, common-styles must be separate and well organized. assets folder structure assets/images // all images of the application assets/fonts // fonts using in the applicaton src folder structure Reuseable components src/components // reusables components need to be use in any component Authentication components src/screens/auth/login.js src/screens/auth/register.js src/screens/auth/reset_password.js src/screens/auth/verify_password.js src/screens/components/ // auth component specific components Dashboard components src/screens/dashboard/dashboard.js // show customer balance components src/screens/dashboard/components/customer_balance.js Package plans components Package categories src/screens/package_catgories/categories.js Package plans src/screens/package_plans/plans.js src/screens/package_plans/components/plan_details.js Subscriptions...