I'm trying to show a full screen dialog. What I ha...
# compose
c
I'm trying to show a full screen dialog. What I have works EXCEPT that the dialog doesn't show under the system navigation bar or under the system status/notification bar. My app draws edge to edge and so I'm surprised by this behavior as it's almost like the dialog has the proper insets set on it. Anything I can do about it?
Copy code
Dialog(
      onDismissRequest = onClose,
      properties = DialogProperties(
          usePlatformDefaultWidth = false,
          decorFitsSystemWindows = false,
          dismissOnClickOutside = false,
          dismissOnBackPress = false,
      ),
  ) {
s
Isn't it that dialogs are drawn in an entire separate window? Which would mean that there's no way for it to draw under parts of your UI. Maybe also show a screenshot of what you're trying to do and what actually happens?
c
Windows still confuse me. 😄 I've just decided not to care about this issue for now. From the looks of stackoverflow, it has gone unanswered there as well