New repo mobile after delete ! #1

Merged
bagasbanuna merged 233 commits from api/24-oct-25 into main 2025-10-27 11:32:16 +08:00
89 changed files with 4064 additions and 387 deletions
Showing only changes of commit 55b4b1fa8d - Show all commits

View File

@@ -95,6 +95,14 @@ export default function UserLayout() {
headerLeft: () => <BackButton />,
}}
/>
{/* Portofolio */}
<Stack.Screen
name="portofolio"
options={{
headerShown: false,
}}
/>
</Stack>
</>
);

View File

@@ -1,11 +1,11 @@
import { Text, View } from "react-native";
import { TextCustom, ViewWrapper } from "@/components";
import { useLocalSearchParams } from "expo-router";
export default function PortofolioCreate() {
const { id } = useLocalSearchParams();
return (
<View>
<Text>Portofolio Create {id}</Text>
</View>
<ViewWrapper>
<TextCustom>Portofolio Create {id}</TextCustom>
</ViewWrapper>
);
}

View File

@@ -20,6 +20,7 @@ export default function PortofolioLayout() {
name="[id]/create"
options={{ title: "Tambah Portofolio" }}
/>
</Stack>
</>
);

View File

@@ -17,13 +17,7 @@ export default function ApplicationLayout() {
}}
/>
{/* Portofolio */}
<Stack.Screen
name="portofolio"
options={{
headerShown: false,
}}
/>
{/* Take Picture */}
<Stack.Screen