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)
2127
await _shell.CurrentSection.Navigation.
PushModalAsync
(modal, animated);
2152
protected override Task OnPushModal(Page modal, bool animated) => _shellProxy.
PushModalAsync
(modal, animated);
Shell\ShellSection.cs (2)
607
return Navigation.
PushModalAsync
(page, isAnimated);
1129
return Inner?.
PushModalAsync
(modal, animated);