fix folder

deskripsi:
- fix folder profile ke (user)
This commit is contained in:
2025-07-08 12:22:15 +08:00
parent 55b4b1fa8d
commit 3d9672154c
9 changed files with 16 additions and 18 deletions

View File

@@ -0,0 +1,34 @@
import { BackButton } from "@/components";
import { GStyles } from "@/styles/global-styles";
import { Stack } from "expo-router";
export default function ProfileLayout() {
return (
<>
<Stack
screenOptions={{
headerStyle: GStyles.headerStyle,
headerTitleStyle: GStyles.headerTitleStyle,
headerTitleAlign: "center",
headerBackButtonDisplayMode: "minimal",
headerLeft: () => <BackButton />,
}}
>
{/* <Stack.Screen name="[id]/index" options={{ headerShown: false }} /> */}
<Stack.Screen name="[id]/edit" options={{ title: "Edit Profile" }} />
<Stack.Screen
name="[id]/update-photo"
options={{ title: "Update Foto" }}
/>
<Stack.Screen
name="[id]/update-background"
options={{ title: "Update Latar Belakang" }}
/>
<Stack.Screen
name="[id]/create"
options={{ title: "Buat Profile" }}
/>
</Stack>
</>
);
}