Fabio Grumiro
07/06/2023, 1:50 PMDialogProperties(decorFitsSystemWindows = false)
the dialog takes the size of the entire screen on Android 11 and before.
I have this problem on both Compose 1.4 and 1.3.
Am I missing something?
Dialog(
onDismissRequest = { },
properties = DialogProperties(decorFitsSystemWindows = false)
) {
Text("Test")
}
Fabio Grumiro
07/10/2023, 9:35 AM