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