Is there a way to have edge to edge support in a P...
# compose-android
j
Is there a way to have edge to edge support in a Popup? I can't seem to draw under the system bars, I'm just putting a max size blue Box in a Popup like this:
Copy code
Popup(
    properties = PopupProperties(
        focusable = true,
        dismissOnBackPress = false,
        dismissOnClickOutside = false,
    )
) {
    Box(modifier = Modifier.fillMaxSize().background(Color.Blue))
}
and despite the rest of the app have edge to edge support enabled and using WindowInsets correctly. The popup looks like this:
1