Hello,
You could refer to the following steps to setting the Shell
.
Step1. In your AppShell.xaml
, please set Page3
as your ShellContent
.
Step2. Open the App.xaml.cs
, setting MainPage as MainPage = new NavigationPage(new YourPage1());
.
Step3. In your login page, you need to use await App.Current.MainPage.Navigation.PushAsync(new YourPage2());
to turn to the Page2
.
Step4. In the Page2.xaml.cs
, you could use App.Current.MainPage = new AppShell();
to turn to your Page3 with the Flyout
.
Best Regards,
Alec Liu.
If the answer is the right solution, please click "Accept Answer" and kindly upvote it. If you have extra questions about this answer, please click "Comment".
Note: Please follow the steps in our documentation to enable e-mail notifications if you want to receive the related email notification for this thread.