Last active
March 13, 2024 00:46
-
-
Save CostaFot/b977aba8b186ef89567f1f915899a459 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
AppTheme { | |
var systemBarStyle by remember { | |
val defaultSystemBarColor = android.graphics.Color.TRANSPARENT | |
mutableStateOf( | |
SystemBarStyle.auto( | |
lightScrim = defaultSystemBarColor, | |
darkScrim = defaultSystemBarColor | |
) | |
) | |
} | |
LaunchedEffect(systemBarStyle) { | |
enableEdgeToEdge( | |
statusBarStyle = systemBarStyle, | |
navigationBarStyle = systemBarStyle | |
) | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment