69 lines
1.9 KiB
TypeScript
69 lines
1.9 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="(tabs)"
|
|
options={{
|
|
headerShown: false,
|
|
// title: "iii",
|
|
// headerLeft: () => (
|
|
// <Ionicons name="search" size={20} color={MainColor.white} />
|
|
// ),
|
|
// headerRight: () => (
|
|
// <Ionicons name="notifications" size={20} color={MainColor.white} />
|
|
// ),
|
|
}}
|
|
/>
|
|
<Stack.Screen
|
|
name="event/index"
|
|
options={{
|
|
title: "Event",
|
|
headerLeft: () => (
|
|
<Ionicons
|
|
name="arrow-back"
|
|
size={20}
|
|
color={MainColor.yellow}
|
|
onPress={() => router.back()}
|
|
/>
|
|
),
|
|
}}
|
|
/>
|
|
{/* <Stack.Screen
|
|
name="home"
|
|
options={{
|
|
title: "HIPMI",
|
|
headerLeft: () => (
|
|
<Ionicons name="search" size={20} color={MainColor.yellow} />
|
|
),
|
|
headerRight: () => (
|
|
<Ionicons
|
|
name="notifications"
|
|
size={20}
|
|
color={MainColor.yellow}
|
|
/>
|
|
),
|
|
}}
|
|
/> */}
|
|
</Stack>
|
|
</>
|
|
);
|
|
}
|