feat: Complete Admin Phase 3 Donation screens migration to OS_Wrapper

Co-authored-by: Qwen-Coder <qwen-coder@alibabacloud.com>
This commit is contained in:
2026-04-15 11:42:28 +08:00
parent 115e9c49a2
commit e260ed546b
14 changed files with 804 additions and 44 deletions

View File

@@ -10,8 +10,8 @@ import {
TextAreaCustom,
TextCustom,
TextInputCustom,
ViewWrapper,
} from "@/components";
import OS_Wrapper from "@/components/_ShareComponent/OS_Wrapper";
import AdminBackButtonAntTitle from "@/components/_ShareComponent/Admin/BackButtonAntTitle";
import DIRECTORY_ID from "@/constants/directory-id";
import { useAuth } from "@/hooks/use-auth";
@@ -142,7 +142,9 @@ export default function AdminDonationDisbursementOfFunds() {
);
return (
<ViewWrapper
<OS_Wrapper
enableKeyboardHandling
contentPaddingBottom={250}
headerComponent={<AdminBackButtonAntTitle title="Pencairan Dana" />}
footerComponent={buttonSubmit}
>
@@ -228,6 +230,6 @@ export default function AdminDonationDisbursementOfFunds() {
<Spacing />
<Image source={image?.uri} style={{ width: "100%", height: 300 }} />
<Spacing />
</ViewWrapper>
</OS_Wrapper>
);
}