Files
umra-app/app.json
Mekan1206 47420f9941 Update app.json to enforce dark mode and enhance Android navigation bar styling
- Changed userInterfaceStyle from 'automatic' to 'dark' for consistent theming.
- Added androidNavigationBar configuration with background color and bar style for improved UI on Android devices.
2025-09-20 11:42:59 +05:00

45 lines
1013 B
JSON

{
"expo": {
"name": "Umra",
"slug": "Umra",
"version": "1.0.0",
"orientation": "portrait",
"icon": "./assets/images/icon.png",
"scheme": "umra",
"userInterfaceStyle": "dark",
"newArchEnabled": true,
"splash": {
"image": "./assets/images/splash-icon.png",
"resizeMode": "contain",
"backgroundColor": "#ffffff"
},
"ios": {
"supportsTablet": true
},
"android": {
"adaptiveIcon": {
"foregroundImage": "./assets/images/adaptive-icon.png",
"backgroundColor": "#ffffff"
},
"edgeToEdgeEnabled": true,
"package": "com.nurmuhammet.ali.Umra",
"androidNavigationBar": {
"backgroundColor": "#1C1C1E",
"barStyle": "light-content"
}
},
"web": {
"bundler": "metro",
"output": "static",
"favicon": "./assets/images/favicon.png"
},
"plugins": [
"expo-router",
"expo-asset"
],
"experiments": {
"typedRoutes": true
}
}
}