如何使用 TabbedPage 从 NavigationPage 全屏导航到普通的 ContentPage?

How to navigate to a normal ContentPage in fullscreen from NavigationPage with TabbedPage?

a Xamarin official sample 演示了如何将 TabbedPage 与 NavigationPage 一起使用。结果如下所示:

如您所见,当它导航到子页面时,子页面在 TabbedPage 中是 "nested"。我想知道如何使子页面全屏显示,这意味着当它在子页面上时,它会占据整个屏幕并且 TabbedPage 不显示。下面是一个例子:

为此,您必须将选项卡式页面嵌入到导航页面中。

App.Current.MainPage = new NavigationPage(new YourTabbedPage());