2 implementations of PushAsync
Microsoft.Maui.Controls (1)
NavigationProxy.cs (1)
131 public Task PushAsync(Page root, bool animated)
Microsoft.Maui.Controls.Compatibility (1)
iOS\Platform.cs (1)
160 Task INavigation.PushAsync(Page root, bool animated)
3 references to PushAsync
Microsoft.Maui.Controls (2)
NavigationProxy.cs (1)
222 return currentInner.PushAsync(page, animated);
Shell\ShellSection.cs (1)
572 await activeModalNavigationPage.Navigation.PushAsync(modalPage, animate ?? IsNavigationAnimated(modalPage));
Microsoft.Maui.Controls.Compatibility (1)
iOS\Platform.cs (1)
157 return ((INavigation)this).PushAsync(root, true);