6 references to SectionProxy
Microsoft.Maui.Controls (6)
Shell\Shell.cs (6)
2084 protected override IReadOnlyList<Page> GetNavigationStack() => SectionProxy?.NavigationStack; 2086 protected override void OnInsertPageBefore(Page page, Page before) => SectionProxy.InsertPageBefore(page, before); 2088 protected override Task<Page> OnPopAsync(bool animated) => SectionProxy.PopAsync(animated); 2090 protected override Task OnPopToRootAsync(bool animated) => SectionProxy.PopToRootAsync(animated); 2092 protected override Task OnPushAsync(Page page, bool animated) => SectionProxy.PushAsync(page, animated); 2094 protected override void OnRemovePage(Page page) => SectionProxy.RemovePage(page);