import React from "react"; import { View, ViewProps, SafeAreaView, Platform, StatusBar, } from "react-native"; import { cn } from "@/lib/utils"; interface ScreenWrapperProps extends ViewProps { children: React.ReactNode; withSafeArea?: boolean; fixedHeader?: boolean; } export function ScreenWrapper({ children, className, containerClassName, withSafeArea = true, fixedHeader = false, ...props }: ScreenWrapperProps & { containerClassName?: string }) { const Container = withSafeArea ? SafeAreaView : View; return ( {children} ); }