feat: Update version to 1.0.6 and enhance release notes with new features and improvements
This commit is contained in:
@@ -92,6 +92,15 @@ fun SelectAccountScreen(
|
||||
LaunchedEffect(Unit) {
|
||||
visible = true
|
||||
}
|
||||
|
||||
// Status bar icons: black on light theme, white on dark
|
||||
val view = androidx.compose.ui.platform.LocalView.current
|
||||
DisposableEffect(isDarkTheme) {
|
||||
val window = (view.context as android.app.Activity).window
|
||||
val insetsController = androidx.core.view.WindowCompat.getInsetsController(window, view)
|
||||
insetsController.isAppearanceLightStatusBars = !isDarkTheme
|
||||
onDispose { }
|
||||
}
|
||||
|
||||
Box(
|
||||
modifier = Modifier
|
||||
|
||||
Reference in New Issue
Block a user