_layout.tsx 381 B

1234567891011121314
  1. import { Stack } from 'expo-router';
  2. import { StatusBar } from 'react-native';
  3. export default function Layout() {
  4. return (
  5. <>
  6. <StatusBar
  7. barStyle="dark-content" // 텍스트 색상: 밝은 배경일 경우 dark-content
  8. backgroundColor="#ffffff" // Android 전용 배경색
  9. />
  10. <Stack screenOptions={{ headerShown: false }} />
  11. </>
  12. );
  13. }