feat: Update version to 1.0.6 and enhance release notes with new features and improvements

This commit is contained in:
2026-02-24 09:02:39 +05:00
parent fba95c0516
commit 73ec5d77f4
11 changed files with 275 additions and 111 deletions

View File

@@ -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