Change Statusbar and Navigation bar color in compose
Add Dependency
implementation "com.google.accompanist:accompanist-systemuicontroller:0.27.0"
In Theme.kt file
val systemUiController = rememberSystemUiController()
if(darkTheme){
systemUiController.setSystemBarsColor(color = colorScheme....
kotlinfan.hashnode.dev1 min read