feature profile

deskripsi:
- drawer & alert
- screen baru: edit profile, update photo, update background, create portofolio
This commit is contained in:
2025-07-01 17:47:51 +08:00
parent 564ea68d29
commit 258e20751e
14 changed files with 510 additions and 244 deletions

View File

@@ -0,0 +1,11 @@
import { Text, View } from "react-native";
import { useLocalSearchParams } from "expo-router";
export default function UpdatePhotoBackground() {
const { id } = useLocalSearchParams();
return (
<View>
<Text>Update Photo Background {id}</Text>
</View>
)
}