I am using systemuicontroller for changing navigat...
# compose
l
I am using systemuicontroller for changing navigation bar and status bar colors. I succeed but as you see in screenshot I cannot change the color icons even by putting true or false for the darkIcons parameter. What I’m doing wrong?
Here is the code :
Copy code
val systemUiController = rememberSystemUiController()
val barColor = Color(0xFFf3f2f9)

val useDarkIcons = MaterialTheme.colors.isLight

SideEffect { systemUiController.setSystemBarsColor(barColor, darkIcons = useDarkIcons) 
}