Fix black-on-black status bars with hidden media
In dark mode, the ElementTheme composable incorrectly applied a dark colour to the status bars, which was nearly invisible on top of the black background of the app. Signed-off-by: Joe Groocock <me@frebib.net>
This commit is contained in:
parent
4319a42d03
commit
1e4be645b8
1 changed files with 1 additions and 1 deletions
|
|
@ -46,7 +46,7 @@ fun ProtectedView(
|
|||
.background(Color(0x99000000)),
|
||||
contentAlignment = Alignment.Center,
|
||||
) {
|
||||
ElementTheme(darkTheme = false) {
|
||||
ElementTheme(darkTheme = false, applySystemBarsUpdate = false) {
|
||||
// Not using a button to be able to have correct size
|
||||
Text(
|
||||
modifier = Modifier
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue