Add: - app-information/information-bank/ Component Fix: - constans-value: Icon size re name ### No Issue
51 lines
1.2 KiB
TypeScript
51 lines
1.2 KiB
TypeScript
import {
|
|
BoxButtonOnFooter,
|
|
ButtonCustom,
|
|
StackCustom,
|
|
TextInputCustom,
|
|
ViewWrapper,
|
|
} from "@/components";
|
|
import AdminBackButtonAntTitle from "@/components/_ShareComponent/Admin/BackButtonAntTitle";
|
|
import { router } from "expo-router";
|
|
|
|
export default function AdminAppInformation_BankDetail() {
|
|
const buttonSubmit = (
|
|
<BoxButtonOnFooter>
|
|
<ButtonCustom
|
|
onPress={() => router.back()}
|
|
>
|
|
Update
|
|
</ButtonCustom>
|
|
</BoxButtonOnFooter>
|
|
);
|
|
return (
|
|
<>
|
|
<ViewWrapper footerComponent={buttonSubmit}>
|
|
<StackCustom>
|
|
<AdminBackButtonAntTitle title="Update Bank" />
|
|
|
|
<StackCustom>
|
|
<TextInputCustom
|
|
label="Nama Bank"
|
|
placeholder="Masukan Nama Bank"
|
|
required
|
|
/>
|
|
|
|
<TextInputCustom
|
|
label="Nama Rekening"
|
|
placeholder="Masukan Nama Rekening"
|
|
required
|
|
/>
|
|
|
|
<TextInputCustom
|
|
label="Nomor Rekening"
|
|
placeholder="Masukan Nomor Rekening"
|
|
required
|
|
/>
|
|
</StackCustom>
|
|
</StackCustom>
|
|
</ViewWrapper>
|
|
</>
|
|
);
|
|
}
|