import React, { ReactNode } from "react"; import { SafeAreaView, StatusBar, View, StyleSheet, Dimensions, } from "react-native"; interface PokerAppUiProps { children: ReactNode; darkMode?: boolean; } const PokerAppUi: React.FC = ({ children, darkMode = false, }) => { const screenHeight = Dimensions.get("window").height; return ( {children} ); }; const styles = StyleSheet.create({ safeArea: { flex: 1, }, container: { flex: 1, width: "100%", padding: 16, justifyContent: "flex-start", alignItems: "center", }, light: { backgroundColor: "#F5F5F5", }, lightGray: { backgroundColor: "#D3D3D3", }, }); export default PokerAppUi;