Colton Idle
04/06/2021, 12:11 PMandroid:theme="@android:style/Theme.Material.Light.NoActionBar.TranslucentDecor"
but I was hoping to find something like Theme.Material.Light.NoActionBar.EdgeToEdge
.julioromano
04/06/2021, 12:18 PMstatusBarColor
and windowLightStatusBar
as per https://medium.com/androiddevelopers/gesture-navigation-going-edge-to-edge-812f62e4e83e .Colton Idle
04/06/2021, 12:20 PMjulioromano
04/06/2021, 12:21 PMComposeView
being loaded).Colton Idle
04/06/2021, 12:27 PMColton Idle
04/06/2021, 12:28 PMAlbert Chang
04/06/2021, 12:29 PMComposeView
and it's held by a window. Compose UI cannot completely eliminate xmls.julioromano
04/06/2021, 12:31 PMAnd thanks for the tip on systemuiconteoller but it looks like it’s for setting color of system bar icons and not making the bars transparent?It doesn’t seem so, check out the very first code examples here: https://google.github.io/accompanist/systemuicontroller/
SideEffect {
// Update all of the system bar colors to be transparent, and use
// dark icons if we're in light theme
systemUiController.setSystemBarsColor(
color = Color.Transparent,
darkIcons = useDarkIcons
)
}