// TestWrapper.tsx - Wrapper sederhana untuk test keyboard handling import { MainColor } from "@/constants/color-palet"; import { Keyboard, KeyboardAvoidingView, Platform, ScrollView, View, } from "react-native"; import { NativeSafeAreaViewProps, SafeAreaView, } from "react-native-safe-area-context"; interface TestWrapperProps { children: React.ReactNode; footerComponent?: React.ReactNode; } export function TestWrapper({ children, footerComponent }: TestWrapperProps) { return ( {children} {footerComponent && ( {footerComponent} )} ); }