feat: Expo scaffold + auth screens + core screens (#39-#46, #48)

This commit is contained in:
Nemo
2026-03-23 18:40:04 +08:00
commit 745321e5bd
45 changed files with 10557 additions and 0 deletions

47
app.json Normal file
View File

@@ -0,0 +1,47 @@
{
"expo": {
"name": "FiberOps",
"slug": "fiberops-mobile",
"version": "1.0.0",
"orientation": "portrait",
"icon": "./assets/icon.png",
"userInterfaceStyle": "light",
"newArchEnabled": true,
"splash": {
"image": "./assets/splash-icon.png",
"resizeMode": "contain",
"backgroundColor": "#2563EB"
},
"ios": {
"supportsTablet": false,
"bundleIdentifier": "com.fiberops.mobile"
},
"android": {
"adaptiveIcon": {
"foregroundImage": "./assets/adaptive-icon.png",
"backgroundColor": "#2563EB"
},
"package": "com.fiberops.mobile"
},
"web": {
"favicon": "./assets/favicon.png"
},
"scheme": "fiberops",
"plugins": [
"expo-router",
"expo-secure-store",
[
"expo-camera",
{ "cameraPermission": "Allow FiberOps to access your camera for installation photos." }
],
[
"expo-location",
{ "locationAlwaysAndWhenInUsePermission": "Allow FiberOps to use your location for installation GPS." }
],
[
"expo-image-picker",
{ "photosPermission": "Allow FiberOps to access your photos." }
]
]
}
}