import React from "react"; import { SafeAreaView } from "react-native"; import { StyleSheet } from "react-native-unistyles"; export const Container = ({ children }: { children: React.ReactNode }) => { return {children}; }; const styles = StyleSheet.create((theme, rt) => ({ container: { flex: 1, backgroundColor: theme.colors.background, paddingBottom: rt.insets.bottom, }, }));