1 implementation of PushModalAsync
Microsoft.Maui.Controls (1)
NavigationProxy.cs (1)
145
public Task
PushModalAsync
(Page modal, bool animated)
6 references to PushModalAsync
Microsoft.Maui.Controls (6)
NavigationProxy.cs (2)
60
_inner.
PushModalAsync
(request.Page, request.IsAnimated);
233
return currentInner.
PushModalAsync
(modal, animated);
Shell\Shell.cs (2)
2125
await _shell.CurrentSection.Navigation.
PushModalAsync
(modal, animated);
2150
protected override Task OnPushModal(Page modal, bool animated) => _shellProxy.
PushModalAsync
(modal, animated);
Shell\ShellSection.cs (2)
605
return Navigation.
PushModalAsync
(page, isAnimated);
1127
return Inner?.
PushModalAsync
(modal, animated);