deskripsi: - fix ViewWrapper : flexibel terhadap keypad - saat keypad keluar tidak ada lagi space di atas navighation bar No Issue
108 lines
2.9 KiB
TypeScript
108 lines
2.9 KiB
TypeScript
import {
|
|
AvatarCustom,
|
|
ButtonCustom,
|
|
SelectCustom,
|
|
Spacing,
|
|
StackCustom,
|
|
TextInputCustom,
|
|
ViewWrapper,
|
|
} from "@/components";
|
|
import InformationBox from "@/components/Box/InformationBox";
|
|
import ButtonUpload from "@/components/Button/ButtonUpload";
|
|
import LandscapeFrameUploaded from "@/components/Image/LandscapeFrameUploaded";
|
|
import { GStyles } from "@/styles/global-styles";
|
|
import { useState } from "react";
|
|
import { View } from "react-native";
|
|
|
|
export default function CreateProfile() {
|
|
const [data, setData] = useState({
|
|
name: "",
|
|
email: "",
|
|
address: "",
|
|
gender: "",
|
|
});
|
|
|
|
const handlerSave = () => {
|
|
console.log("data create profile >>", data);
|
|
// router.back();
|
|
};
|
|
|
|
const footerComponent = (
|
|
<View style={GStyles.bottomBar}>
|
|
<View style={GStyles.bottomBarContainer}>
|
|
<ButtonCustom
|
|
onPress={handlerSave}
|
|
disabled={!data.name || !data.email || !data.address || !data.gender}
|
|
>
|
|
Simpan
|
|
</ButtonCustom>
|
|
</View>
|
|
</View>
|
|
);
|
|
|
|
return (
|
|
<ViewWrapper footerComponent={footerComponent}>
|
|
<StackCustom>
|
|
<InformationBox text="Upload foto profile anda." />
|
|
<View style={{ alignItems: "center" }}>
|
|
<AvatarCustom size="xl" />
|
|
<Spacing />
|
|
<ButtonUpload onPress={() => console.log("pressed")} />
|
|
</View>
|
|
|
|
<Spacing />
|
|
|
|
<View>
|
|
<InformationBox text="Upload foto latar belakang anda." />
|
|
<LandscapeFrameUploaded />
|
|
<Spacing />
|
|
<ButtonUpload onPress={() => console.log("pressed")} />
|
|
</View>
|
|
|
|
<Spacing />
|
|
<TextInputCustom
|
|
required
|
|
label="Nama"
|
|
placeholder="Masukkan nama"
|
|
value={data.name}
|
|
onChangeText={(text) => setData({ ...data, name: text })}
|
|
/>
|
|
<TextInputCustom
|
|
keyboardType="email-address"
|
|
required
|
|
label="Email"
|
|
placeholder="Masukkan email"
|
|
value={data.email}
|
|
onChangeText={(text) => setData({ ...data, email: text })}
|
|
/>
|
|
<TextInputCustom
|
|
required
|
|
label="Alamat"
|
|
placeholder="Masukkan alamat"
|
|
value={data.address}
|
|
onChangeText={(text) => setData({ ...data, address: text })}
|
|
/>
|
|
<SelectCustom
|
|
label="Jenis Kelamin"
|
|
placeholder="Pilih jenis kelamin"
|
|
data={[
|
|
{ label: "Laki-laki", value: "laki-laki" },
|
|
{ label: "Perempuan", value: "perempuan" },
|
|
]}
|
|
value={data.gender}
|
|
required
|
|
onChange={(value) => setData({ ...(data as any), gender: value })}
|
|
/>
|
|
<TextInputCustom
|
|
required
|
|
label="Alamat"
|
|
placeholder="Masukkan alamat"
|
|
value={data.address}
|
|
onChangeText={(text) => setData({ ...data, address: text })}
|
|
/>
|
|
{/* <Spacing /> */}
|
|
</StackCustom>
|
|
</ViewWrapper>
|
|
);
|
|
}
|