Add expo-splash-screen dependency and configure splash screen settings in app.json

This commit is contained in:
2025-09-11 10:47:38 +05:00
parent db6a9e2bc0
commit 66f5271640
3 changed files with 197 additions and 3 deletions

View File

@@ -33,6 +33,18 @@
},
"plugins": [
"expo-font",
[
"expo-splash-screen",
{
"backgroundColor": "#17b69b",
"image": "./assets/splash-icon.png",
"dark": {
"image": "./assets/splash-icon.png",
"backgroundColor": "#232323"
},
"imageWidth": 200
}
]
]
}
}