File tree Expand file tree Collapse file tree 1 file changed +5
-1
lines changed
composeApp/src/androidMain/kotlin/com/nexters/emotia Expand file tree Collapse file tree 1 file changed +5
-1
lines changed Original file line number Diff line number Diff line change @@ -7,15 +7,19 @@ import androidx.activity.enableEdgeToEdge
77import androidx.compose.runtime.Composable
88import androidx.compose.ui.tooling.preview.Preview
99import androidx.core.splashscreen.SplashScreen.Companion.installSplashScreen
10+ import androidx.core.view.WindowCompat
1011import com.nexters.emotia.core.platform.AndroidContext
1112
1213class MainActivity : ComponentActivity () {
1314 override fun onCreate (savedInstanceState : Bundle ? ) {
1415 installSplashScreen()
15-
1616 enableEdgeToEdge()
1717 super .onCreate(savedInstanceState)
1818
19+ // 상태 바 아이콘 색상 반전
20+ WindowCompat .getInsetsController(window, window.decorView).isAppearanceLightStatusBars =
21+ false
22+
1923 // Android Context 초기화
2024 AndroidContext .init (this )
2125
You can’t perform that action at this time.
0 commit comments