4 overrides of OnPushModal
Microsoft.Maui.Controls (4)
Shell\Shell.cs (2)
2113 protected override async Task OnPushModal(Page modal, bool animated) 2150 protected override Task OnPushModal(Page modal, bool animated) => _shellProxy.PushModalAsync(modal, animated);
Shell\ShellSection.cs (1)
1126 protected override async Task OnPushModal(Page modal, bool animated)
Window\Window.cs (1)
734 protected override Task OnPushModal(Page modal, bool animated)
4 references to OnPushModal
Microsoft.Maui.Controls (4)
NavigationProxy.cs (1)
149 return OnPushModal(modal, animated);
Shell\Shell.cs (2)
2117 await base.OnPushModal(modal, animated); 2132 await base.OnPushModal(modal, animated);
Shell\ShellSection.cs (1)
1131 await base.OnPushModal(modal, animated);