Hello, when I use a Dialog or an AlertDialog in co...
# compose-android
f
Hello, when I use a Dialog or an AlertDialog in conjunction with
DialogProperties(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?
Copy code
Dialog(
    onDismissRequest = {  },
    properties = DialogProperties(decorFitsSystemWindows = false)
) {
   Text("Test")
}