AAA Refactor app structure to use SafeAreaProvider, update StatusBar configuration, and enhance tab navigator styles. Add expo-system-ui dependency for improved status bar handling.

This commit is contained in:
Mekan1206
2025-09-11 12:39:19 +05:00
parent 61bcb6aa3f
commit 2eb41db2e5
7 changed files with 72 additions and 20 deletions

View File

@@ -13,7 +13,10 @@
"backgroundColor": "#17b69b"
},
"ios": {
"supportsTablet": true
"supportsTablet": true,
"statusBar": {
"barStyle": "dark-content"
}
},
"android": {
"adaptiveIcon": {
@@ -21,7 +24,11 @@
"backgroundColor": "#17b69b"
},
"edgeToEdgeEnabled": true,
"package": "com.nurmuhammet.ali.tbbankonline"
"package": "com.nurmuhammet.ali.tbbankonline",
"statusBar": {
"barStyle": "dark-content",
"backgroundColor": "#ffffff"
}
},
"web": {
"favicon": "./assets/favicon.png"
@@ -40,7 +47,8 @@
"image": "./assets/splash-icon.png",
"imageWidth": 200
}
]
],
"expo-system-ui"
]
}
}