Accessibility modal - .NET MAUI

In MAUI, you can use two approaches to display modals:

  • MAUI's default Navigation.PushModalAsync. More details here.
Navigation.PushModalAsync(new ModalPageToDisplay());
var popup = new SimplePopup();

rootPage.ShowPopup(popup);

Both approaches follow the standard native behavior for presenting modals/popups.