From f4b2bac6b0749e5924f9e9e789cc361a17427364 Mon Sep 17 00:00:00 2001 From: MohamedBassem Date: Mon, 16 Dec 2024 00:26:12 +0000 Subject: ui(mobile): Make page titles more native --- apps/mobile/app/dashboard/_layout.tsx | 11 +++++++++-- 1 file changed, 9 insertions(+), 2 deletions(-) (limited to 'apps/mobile/app/dashboard/_layout.tsx') diff --git a/apps/mobile/app/dashboard/_layout.tsx b/apps/mobile/app/dashboard/_layout.tsx index 5717f711..d6e5ab7c 100644 --- a/apps/mobile/app/dashboard/_layout.tsx +++ b/apps/mobile/app/dashboard/_layout.tsx @@ -1,7 +1,7 @@ import type { AppStateStatus } from "react-native"; import { useEffect } from "react"; import { AppState, Platform } from "react-native"; -import { useRouter } from "expo-router"; +import { useNavigation, useRouter } from "expo-router"; import { Stack } from "expo-router/stack"; import { StyledStack } from "@/components/navigation/stack"; import { useIsLoggedIn } from "@/lib/session"; @@ -16,6 +16,14 @@ function onAppStateChange(status: AppStateStatus) { export default function Dashboard() { const router = useRouter(); + const navigation = useNavigation(); + // Hide the header on the parent screen + useEffect(() => { + navigation.setOptions({ + headerShown: false, + }); + }, [navigation]); + const isLoggedIn = useIsLoggedIn(); useEffect(() => { if (isLoggedIn !== undefined && !isLoggedIn) { @@ -32,7 +40,6 @@ export default function Dashboard() { return (