Fix system bar color after login on light theme.
Actually for the SunsetPage, we need a light status bar.
This commit is contained in:
1
changelog.d/1222.bugfix
Normal file
1
changelog.d/1222.bugfix
Normal file
@@ -0,0 +1 @@
|
||||
Fix system bar color after login on light theme.
|
||||
@@ -44,6 +44,7 @@ import io.element.android.libraries.designsystem.text.withColoredPeriod
|
||||
import io.element.android.libraries.designsystem.theme.components.CircularProgressIndicator
|
||||
import io.element.android.libraries.designsystem.theme.components.Text
|
||||
import io.element.android.libraries.theme.ElementTheme
|
||||
import io.element.android.libraries.theme.ForcedDarkElementTheme
|
||||
|
||||
@Composable
|
||||
fun SunsetPage(
|
||||
@@ -53,9 +54,7 @@ fun SunsetPage(
|
||||
modifier: Modifier = Modifier,
|
||||
overallContent: @Composable () -> Unit,
|
||||
) {
|
||||
ElementTheme(
|
||||
darkTheme = true
|
||||
) {
|
||||
ForcedDarkElementTheme(lightStatusBar = true) {
|
||||
Box(
|
||||
modifier = modifier.fillMaxSize()
|
||||
) {
|
||||
|
||||
@@ -92,6 +92,7 @@ internal val LocalCompoundColors = staticCompositionLocalOf { compoundColorsLigh
|
||||
@Composable
|
||||
fun ElementTheme(
|
||||
darkTheme: Boolean = isSystemInDarkTheme(),
|
||||
lightStatusBar: Boolean = !darkTheme,
|
||||
dynamicColor: Boolean = false, /* true to enable MaterialYou */
|
||||
compoundColors: SemanticColors = if (darkTheme) compoundColorsDark else compoundColorsLight,
|
||||
materialLightColors: ColorScheme = materialColorSchemeLight,
|
||||
@@ -111,8 +112,19 @@ fun ElementTheme(
|
||||
darkTheme -> materialDarkColors
|
||||
else -> materialLightColors
|
||||
}
|
||||
val statusBarColorScheme = if (lightStatusBar) {
|
||||
when {
|
||||
dynamicColor && Build.VERSION.SDK_INT >= Build.VERSION_CODES.S -> {
|
||||
val context = LocalContext.current
|
||||
dynamicLightColorScheme(context)
|
||||
}
|
||||
else -> materialLightColors
|
||||
}
|
||||
} else {
|
||||
colorScheme
|
||||
}
|
||||
SideEffect {
|
||||
systemUiController.applyTheme(colorScheme = colorScheme, darkTheme = darkTheme)
|
||||
systemUiController.applyTheme(colorScheme = statusBarColorScheme, darkTheme = darkTheme && !lightStatusBar)
|
||||
}
|
||||
CompositionLocalProvider(
|
||||
LocalCompoundColors provides currentCompoundColor,
|
||||
@@ -132,6 +144,7 @@ fun ElementTheme(
|
||||
*/
|
||||
@Composable
|
||||
fun ForcedDarkElementTheme(
|
||||
lightStatusBar: Boolean = false,
|
||||
content: @Composable () -> Unit,
|
||||
) {
|
||||
val systemUiController = rememberSystemUiController()
|
||||
@@ -142,7 +155,7 @@ fun ForcedDarkElementTheme(
|
||||
systemUiController.applyTheme(colorScheme, wasDarkTheme)
|
||||
}
|
||||
}
|
||||
ElementTheme(darkTheme = true, content = content)
|
||||
ElementTheme(darkTheme = true, lightStatusBar = lightStatusBar, content = content)
|
||||
}
|
||||
|
||||
private fun SystemUiController.applyTheme(
|
||||
|
||||
Reference in New Issue
Block a user