Aaron Waller
09/23/2022, 12:38 PMsystemUiController.setSystemBarsColor(
color = Color.Transparent
)
How can I put a gradient?ste
09/23/2022, 12:53 PMWindowCompat.setDecorFitsSystemWindows(window, false)
Not sure if dealing with the window insets it's worth it, thought.Alex Vanyo
09/23/2022, 6:38 PMstatusBarColor
provided by the system has to be a single color. By making it transparent, and letting your application draw underneath, you get the most control and customizability for what it looks like!Alex Vanyo
09/23/2022, 6:39 PMNot sure if dealing with the window insets it’s worth it, thought.The newish Compose APIs for insets hopefully make this easier and less scary to do!
Colton Idle
09/26/2022, 6:00 PMColton Idle
09/26/2022, 6:01 PM