aboutsummaryrefslogtreecommitdiffstats
path: root/apps/mobile/app/dashboard/_layout.tsx
diff options
context:
space:
mode:
Diffstat (limited to 'apps/mobile/app/dashboard/_layout.tsx')
-rw-r--r--apps/mobile/app/dashboard/_layout.tsx11
1 files changed, 11 insertions, 0 deletions
diff --git a/apps/mobile/app/dashboard/_layout.tsx b/apps/mobile/app/dashboard/_layout.tsx
index db4fd251..22d1ed07 100644
--- a/apps/mobile/app/dashboard/_layout.tsx
+++ b/apps/mobile/app/dashboard/_layout.tsx
@@ -33,6 +33,9 @@ export default function Dashboard() {
<StyledStack
contentClassName="bg-gray-100 dark:bg-background"
headerClassName="bg-gray-100 dark:bg-background text-foreground"
+ screenOptions={{
+ headerTransparent: true,
+ }}
>
<Stack.Screen
name="(tabs)"
@@ -54,6 +57,14 @@ export default function Dashboard() {
headerTransparent: true,
}}
/>
+ <Stack.Screen
+ name="settings/theme"
+ options={{
+ title: "Theme",
+ headerTitle: "Theme",
+ headerBackTitle: "Back",
+ }}
+ />
</StyledStack>
);
}