In Compose 1.9.0, the `Dialog()` composable applie...
# multiplatform
m
In Compose 1.9.0, the
Dialog()
composable applies window insets internally, which prevents me from drawing behind the system bars (so an edge-to-edge dialog isn’t possible). Is this intended behavior? How can I ignore those insets to achieve a full-screen dialog?
c
How about creating a regular screen and adding the Dialog inside that? So you can draw in the whole window, and also able to have something that looks like a Dialog within the screen
m
@Csaba Szugyiczki I thought about this but in my code base there are many dialogs that were made full screen and were working fine before updating to 1.9.0
c
Ahh I see, then it is worth investigating if there is a workaround for this