Get Started
Project Structure
Understand the project structure of codebase
Spend time getting familiar with the project structure. It will help you move faster!
Folder structure
1. /app
All app screens are under the /app
folder, including:
/app/index.js
: Main entry point for the app. It redirects to theSplashScreen
./app/_layout.js
: Main layout for the app. It wraps the app withThemeProvider
andGestureHandlerView
./app/Splashscreen
: All the splash screen related files are under this folder./app/Onboarding
: All the onboarding related files are under this folder./app/Auth
: All the authentication related files are under this folder./app/Screens
: All the component screens from Home page are under this folder./app/(tabs)
: All the tab screens are under this folder (Home
,Ads
,Settings
).
2. /components
Reusable components are under the /components
folder. These components are used across the app.
Check out the components section for more information!
Components
Build beautiful mobile apps using Tailwind CSS.
3. /utility
Utility functions are under the /utility
folder. These are various helper functions (PushNotificationHandler.js
, RevenueCatHandler.js
, SupabaseHandler.js
, …) used across the app.
4. /assets
All assets are under the /assets
folder, including:
/assets/animations
: Lottie animations used across the app./assets/icons
: App icons used across the app.