Assigned
Status Update
Comments
jb...@google.com <jb...@google.com>
il...@google.com <il...@google.com> #2
Please include a sample project that reproduces your issue.
No update yet.
Please include a sample project that reproduces your issue.
Description
Version used: 1.9.2
Jetpack Compose Version: 2024.09.01
Devices/Android versions reproduced on: Samsung A23, any Android version over 11
If this is a bug in the library, we would appreciate if you could attach:
- Sample project to trigger the issue.
- A screenrecord or screenshots showing the issue (if UI related).
the ssue is whenever I enable edge to edge, I get a top app bar all across my app, even tho I didn't specify one.
in case a screen already has a top app bar, this top app bar will be rendered on top.
override fun onCreate(savedInstanceState: Bundle?) {
super.onCreate(savedInstanceState)
enableEdgeToEdge(
statusBarStyle = SystemBarStyle.auto(
lightScrim = Transparent.toArgb(),
darkScrim = Transparent.toArgb()
),
navigationBarStyle = SystemBarStyle.auto(
lightScrim = Transparent.toArgb(),
darkScrim = Transparent.toArgb()
)
)
}