Files
hipmi-mobile/screens/RootLayout/AppRoot.tsx
Bagasbanuna02 0b6c360500 API
Add: Screen root
2025-08-18 11:45:06 +08:00

32 lines
915 B
TypeScript

import { MainColor } from "@/constants/color-palet";
import { Stack } from "expo-router";
export default function AppRoot() {
return (
<>
<Stack
screenOptions={{
headerStyle: { backgroundColor: MainColor.darkblue },
headerTitleStyle: { color: MainColor.yellow, fontWeight: "bold" },
headerTitleAlign: "center",
}}
>
<Stack.Screen
name="index"
options={{ title: "", headerBackVisible: false }}
/>
<Stack.Screen name="+not-found" options={{ title: "" }} />
<Stack.Screen
name="verification"
options={{ title: "", headerBackVisible: false }}
/>
<Stack.Screen
name="register"
options={{ title: "", headerBackVisible: false }}
/>
<Stack.Screen name="(application)" options={{ headerShown: false }} />
</Stack>
</>
);
}