Skip to content
Nguyen Nguyen edited this page Nov 10, 2021 · 9 revisions

Navigation Flow

Frontend - Backend Data Flows

Frontend & Backend Communication

Folder Structures

mobileapp/
 |____ assets/: Static files like images, logo, icons, and fonts.
 |____ components/: Reusable and UI components such as TabBar, Custom Button, SlideView, etc.
 |____ screens/: All the screens that user can navigate to.
    |___ HomeScreen.js
    |___ SearchScreen.js
    |___ ProfileScreen.js

server/ : API services using Feather.js
 |____ db/: SQLite database file goes here
 |____ models/: Data models
 |____ utils/: All the utils/helpers files go here that storing reusable methods and logic

Clone this wiki locally