aboutsummaryrefslogtreecommitdiffstats
path: root/apps/mobile/app/_layout.tsx
diff options
context:
space:
mode:
Diffstat (limited to 'apps/mobile/app/_layout.tsx')
-rw-r--r--apps/mobile/app/_layout.tsx9
1 files changed, 9 insertions, 0 deletions
diff --git a/apps/mobile/app/_layout.tsx b/apps/mobile/app/_layout.tsx
index 41186842..677a0638 100644
--- a/apps/mobile/app/_layout.tsx
+++ b/apps/mobile/app/_layout.tsx
@@ -48,10 +48,19 @@ export default function RootLayout() {
contentClassName="bg-gray-100 dark:bg-background"
screenOptions={{
headerShown: false,
+ headerTransparent: true,
}}
>
<Stack.Screen name="index" />
<Stack.Screen name="sharing" />
+ <Stack.Screen
+ name="test-connection"
+ options={{
+ title: "Test Connection",
+ headerShown: true,
+ presentation: "modal",
+ }}
+ />
</StyledStack>
<StatusBar style="auto" />
</View>