4 overrides of OnPushModal
Microsoft.Maui.Controls (4)
Shell\Shell.cs (2)
2115 protected override async Task OnPushModal(Page modal, bool animated) 2152 protected override Task OnPushModal(Page modal, bool animated) => _shellProxy.PushModalAsync(modal, animated);
Shell\ShellSection.cs (1)
1139 protected override async Task OnPushModal(Page modal, bool animated)
Window\Window.cs (1)
735 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)
2119 await base.OnPushModal(modal, animated); 2134 await base.OnPushModal(modal, animated);
Shell\ShellSection.cs (1)
1144 await base.OnPushModal(modal, animated);