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

@@ -1,6 +1,6 @@
import { Href } from "expo-router";
export { ICustomTab, ITabs };
export { ICustomTab, ITabs, IMenuDrawerItem };
interface ICustomTab {
icon: string;
@@ -18,3 +18,10 @@ interface ITabs {
isActive: boolean;
disabled?: boolean;
}
interface IMenuDrawerItem {
icon: string;
label: string;
path?: string;
color?: string;
}