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