33 lines
1.0 KiB
TypeScript
33 lines
1.0 KiB
TypeScript
import { MainColor } from "@/constants/color-palet";
|
|
import { Stack } from "expo-router";
|
|
import "react-native-gesture-handler";
|
|
import { SafeAreaProvider } from "react-native-safe-area-context";
|
|
|
|
export default function RootLayout() {
|
|
return (
|
|
<>
|
|
<SafeAreaProvider>
|
|
<Stack
|
|
screenOptions={{
|
|
headerStyle: { backgroundColor: MainColor.darkblue },
|
|
headerTitleStyle: { color: MainColor.yellow, fontWeight: "bold" },
|
|
headerTitleAlign: "center",
|
|
}}
|
|
>
|
|
<Stack.Screen name="index" options={{ title: "" }} />
|
|
<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>
|
|
</SafeAreaProvider>
|
|
</>
|
|
);
|
|
}
|