- import { Stack } from 'expo-router';
- import { StatusBar } from 'react-native';
- export default function Layout() {
- return (
- <>
- <StatusBar
- barStyle="dark-content" // 텍스트 색상: 밝은 배경일 경우 dark-content
- backgroundColor="#ffffff" // Android 전용 배경색
- />
- <Stack screenOptions={{ headerShown: false }} />
- </>
- );
- }
|