189 lines
4.6 KiB
TypeScript
189 lines
4.6 KiB
TypeScript
import { AccentColor, MainColor } from "@/constants/color-palet";
|
|
import { GStyles } from "@/styles/global-styles";
|
|
import { Ionicons } from "@expo/vector-icons";
|
|
import { router, Stack } from "expo-router";
|
|
|
|
export default function ApplicationLayout() {
|
|
return (
|
|
<>
|
|
<Stack
|
|
screenOptions={{
|
|
headerStyle: GStyles.headerStyle,
|
|
headerTitleStyle: GStyles.headerTitleStyle,
|
|
headerTitleAlign: "center",
|
|
contentStyle: {
|
|
borderBottomColor: AccentColor.blue,
|
|
borderBottomWidth: 2,
|
|
},
|
|
// headerLargeStyle: {
|
|
// backgroundColor: MainColor.darkblue,
|
|
// },
|
|
}}
|
|
>
|
|
<Stack.Screen
|
|
name="home"
|
|
options={{
|
|
title: "HIPMI",
|
|
headerLeft: () => (
|
|
<Ionicons
|
|
name="search"
|
|
size={20}
|
|
color={MainColor.yellow}
|
|
onPress={() => router.push("/(application)/user-search")}
|
|
/>
|
|
),
|
|
headerRight: () => (
|
|
<Ionicons
|
|
name="notifications"
|
|
size={20}
|
|
color={MainColor.yellow}
|
|
onPress={() => router.push("/(application)/notifications")}
|
|
/>
|
|
),
|
|
}}
|
|
/>
|
|
|
|
<Stack.Screen
|
|
name="forum/index"
|
|
options={{
|
|
title: "Forum",
|
|
headerLeft: () => (
|
|
<Ionicons
|
|
name="arrow-back"
|
|
size={20}
|
|
color={MainColor.yellow}
|
|
onPress={() => router.back()}
|
|
/>
|
|
),
|
|
}}
|
|
/>
|
|
|
|
<Stack.Screen
|
|
name="maps/index"
|
|
options={{
|
|
title: "Maps",
|
|
headerLeft: () => (
|
|
<Ionicons
|
|
name="arrow-back"
|
|
size={20}
|
|
color={MainColor.yellow}
|
|
onPress={() => router.back()}
|
|
/>
|
|
),
|
|
}}
|
|
/>
|
|
|
|
<Stack.Screen
|
|
name="marketplace/index"
|
|
options={{
|
|
title: "Market Place",
|
|
headerLeft: () => (
|
|
<Ionicons
|
|
name="arrow-back"
|
|
size={20}
|
|
color={MainColor.yellow}
|
|
onPress={() => router.back()}
|
|
/>
|
|
),
|
|
}}
|
|
/>
|
|
|
|
{/* Profile */}
|
|
<Stack.Screen
|
|
name="profile"
|
|
options={{
|
|
headerShown: false,
|
|
}}
|
|
/>
|
|
|
|
{/* Portofolio */}
|
|
<Stack.Screen
|
|
name="portofolio"
|
|
options={{
|
|
headerShown: false,
|
|
}}
|
|
/>
|
|
|
|
{/* Event */}
|
|
<Stack.Screen
|
|
name="event/(tabs)"
|
|
options={{
|
|
title: "Event",
|
|
headerLeft: () => (
|
|
<Ionicons
|
|
name="arrow-back"
|
|
size={20}
|
|
color={MainColor.yellow}
|
|
onPress={() => router.push("/(application)/home")}
|
|
/>
|
|
),
|
|
}}
|
|
/>
|
|
|
|
<Stack.Screen
|
|
name="event/detail/[id]"
|
|
options={{
|
|
title: "Detail",
|
|
headerLeft: () => (
|
|
<Ionicons
|
|
name="arrow-back"
|
|
size={20}
|
|
color={MainColor.yellow}
|
|
onPress={() => router.back()}
|
|
/>
|
|
),
|
|
}}
|
|
/>
|
|
|
|
{/* User Search */}
|
|
<Stack.Screen
|
|
name="user-search/index"
|
|
options={{
|
|
title: "Pencarian Pengguna",
|
|
headerLeft: () => (
|
|
<Ionicons
|
|
name="arrow-back"
|
|
size={20}
|
|
color={MainColor.yellow}
|
|
onPress={() => router.back()}
|
|
/>
|
|
),
|
|
}}
|
|
/>
|
|
|
|
{/* Notification */}
|
|
<Stack.Screen
|
|
name="notifications/index"
|
|
options={{
|
|
title: "Notifikasi",
|
|
headerLeft: () => (
|
|
<Ionicons
|
|
name="arrow-back"
|
|
size={20}
|
|
color={MainColor.yellow}
|
|
onPress={() => router.back()}
|
|
/>
|
|
),
|
|
}}
|
|
/>
|
|
|
|
{/* Take Picture */}
|
|
<Stack.Screen
|
|
name="take-picture/[id]/index"
|
|
options={{
|
|
title: "Ambil Gambar",
|
|
headerLeft: () => (
|
|
<Ionicons
|
|
name="arrow-back"
|
|
size={20}
|
|
color={MainColor.yellow}
|
|
onPress={() => router.back()}
|
|
/>
|
|
),
|
|
}}
|
|
/>
|
|
</Stack>
|
|
</>
|
|
);
|
|
}
|