47 lines
1.2 KiB
TypeScript
47 lines
1.2 KiB
TypeScript
import { AccentColor, MainColor } from "@/constants/color-palet";
|
|
import { Ionicons } from "@expo/vector-icons";
|
|
import { router, Stack } from "expo-router";
|
|
|
|
export default function ApplicationLayout() {
|
|
return (
|
|
<>
|
|
<Stack
|
|
screenOptions={{
|
|
headerStyle: { backgroundColor: MainColor.darkblue },
|
|
headerTitleStyle: { color: MainColor.yellow, fontWeight: "bold" },
|
|
headerTitleAlign: "center",
|
|
contentStyle: {
|
|
borderBottomColor: AccentColor.blue,
|
|
borderBottomWidth: 2,
|
|
},
|
|
headerLargeStyle: {
|
|
backgroundColor: MainColor.darkblue,
|
|
},
|
|
}}
|
|
>
|
|
<Stack.Screen
|
|
name="(home-tabs)"
|
|
options={{
|
|
headerShown: false,
|
|
}}
|
|
/>
|
|
|
|
<Stack.Screen
|
|
name="event/index"
|
|
options={{
|
|
title: "Event",
|
|
headerLeft: () => (
|
|
<Ionicons
|
|
name="arrow-back"
|
|
size={20}
|
|
color={MainColor.yellow}
|
|
onPress={() => router.back()}
|
|
/>
|
|
),
|
|
}}
|
|
/>
|
|
</Stack>
|
|
</>
|
|
);
|
|
}
|