2 implementations of PopAsync
Microsoft.Maui.Controls (1)
NavigationProxy.cs (1)
95 public Task<Page> PopAsync(bool animated)
Microsoft.Maui.Controls.Compatibility (1)
iOS\Platform.cs (1)
114 Task<Page> INavigation.PopAsync(bool animated)
3 references to PopAsync
Microsoft.Maui.Controls (2)
NavigationProxy.cs (1)
189 return inner is null ? Task.FromResult(Pop()) : inner.PopAsync(animated);
Shell\ShellSection.cs (1)
429 await Navigation.ModalStack[Navigation.ModalStack.Count - 1].Navigation.PopAsync(isAnimated);
Microsoft.Maui.Controls.Compatibility (1)
iOS\Platform.cs (1)
111 return ((INavigation)this).PopAsync(true);