IOS: Popup, how to stick window to bottom over "home" button. #2524
-
I need to lower Popup to the very bottom of the screen. |
Beta Was this translation helpful? Give feedback.
Replies: 5 comments 3 replies
-
Possibly related to dotnet/maui#27542 |
Beta Was this translation helpful? Give feedback.
-
I think you'll need to look at disabling |
Beta Was this translation helpful? Give feedback.
-
@bijington, @stephenquan
I need help with forcing community toolkit popup layout to ignore safe areas. |
Beta Was this translation helpful? Give feedback.
-
You need to use another control like BottomSheet. I'm not sure if a popup can help you achieve the result. |
Beta Was this translation helpful? Give feedback.
-
I found not very elegant workaround by extending MauiPopup class and overriding ViewDidLayoutSubviews, where I replaced measurments and margins of PopoverPresentationController with my values afterwards. Hope that tuning of margins, overlay color, etc. will be available in future versions without overloading and duplicating half the code. |
Beta Was this translation helpful? Give feedback.
I found not very elegant workaround by extending MauiPopup class and overriding ViewDidLayoutSubviews, where I replaced measurments and margins of PopoverPresentationController with my values afterwards.
Hope that tuning of margins, overlay color, etc. will be available in future versions without overloading and duplicating half the code.