Hello,
In App class, you set AppShell
as the root page.
public App()
{
InitializeComponent();
MainPage = new AppShell();
}
So you could try setting Shell.NavBarIsVisible
and Shell.BackButtonBehavior
in the Page.
<ContentPage ...
Shell.NavBarIsVisible="False">
<Shell.BackButtonBehavior>
<BackButtonBehavior IsVisible="False" />
</Shell.BackButtonBehavior>
...
</ContentPage>
For more details, please refer to .NET MAUI Shell navigation - .NET MAUI | Microsoft Learn
Best Regards,
Wenyan Zhang
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.