Last active
March 13, 2024 01:11
-
-
Save CostaFot/b97897e22c5dfe6727c8030e99c75870 to your computer and use it in GitHub Desktop.
This file contains 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
@Composable | |
private fun MainContent( | |
changeSystemBarStyle: (SystemBarStyle) -> Unit // pass function from top level to change the SystemBarStyle | |
) { | |
Scaffold( | |
modifier = Modifier.fillMaxSize(), | |
containerColor = Color.Black | |
) { paddingValues -> | |
LaunchedEffect(Unit) { | |
changeSystemBarStyle(SystemBarStyle.dark(android.graphics.Color.TRANSPARENT)) | |
} | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment