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
+6 -5
View File
@@ -308,14 +308,15 @@ export default function Main() {
return (
<MainStack.Navigator
initialRouteName={Routes.Splash}
screenOptions={[
{
screenOptions={{
...screenOptions,
contentStyle: {
backgroundColor: Palette.white,
backgroundColor: Palette.black,
},
cardStyle: {
backgroundColor: Palette.black,
},
screenOptions,
]}
}}
>
{screens.map((screen) => (
<MainStack.Screen
+2
View File
@@ -2,6 +2,8 @@ const Palette = {
primary: "#FB68A8",
transparentPrimary: "rgba(251, 104, 168, 0.1)",
background: "#0F0C14",
darkPurple: "#0F0C14",
transparentDarkPurple: "rgba(15, 12, 20, 0.1)",
lightPurple: "#16121E",