Accessibility modal - .NET MAUI
In MAUI, you can use two approaches to display modals:
- MAUI's default
Navigation.PushModalAsync
. More detailshere
.
Navigation.PushModalAsync(new ModalPageToDisplay());
MAUI Community Toolkit
Popups for more detailshere
var popup = new SimplePopup();
rootPage.ShowPopup(popup);
Both approaches follow the standard native behavior for presenting modals/popups.