feat: integrate mobile template with backend, add /mobile path routing and Todo dashboard

This commit is contained in:
Plena Finance Dev
2026-07-09 11:36:45 +05:30
parent 420b803cc0
commit 1a5028b8f3
20 changed files with 1021 additions and 0 deletions

38
mobile/app.json Normal file
View File

@@ -0,0 +1,38 @@
{
"expo": {
"name": "expo-starter",
"slug": "expo-starter",
"version": "1.0.0",
"orientation": "portrait",
"icon": "./assets/images/icon.png",
"scheme": "myapp",
"userInterfaceStyle": "automatic",
"newArchEnabled": true,
"ios": {
"supportsTablet": true,
"bundleIdentifier": "com.trynoah"
},
"android": {
"package": "com.trynoah",
"versionCode": 1,
"adaptiveIcon": {
"foregroundImage": "./assets/images/icon.png",
"backgroundColor": "#ffffff"
}
},
"web": {
"bundler": "metro",
"output": "single",
"favicon": "./assets/images/favicon.png",
"baseUrl": "/mobile"
},
"plugins": [
"expo-router",
"expo-font",
"expo-web-browser"
],
"experiments": {
"typedRoutes": true
}
}
}