fix white screen

This commit is contained in:
2025-10-03 16:52:18 +02:00
parent abf5ade2f9
commit 9c7ca03cbc
2 changed files with 10 additions and 7 deletions
+8 -7
View File
@@ -308,14 +308,15 @@ export default function Main() {
return (
<MainStack.Navigator
initialRouteName={Routes.Splash}
screenOptions={[
{
contentStyle: {
backgroundColor: Palette.white,
},
screenOptions={{
...screenOptions,
contentStyle: {
backgroundColor: Palette.black,
},
screenOptions,
]}
cardStyle: {
backgroundColor: Palette.black,
},
}}
>
{screens.map((screen) => (
<MainStack.Screen