Hello,
Maui Shell currently does not support Flyout and Tabbar being enabled at the same time.
According to the comments in the Tabbar documentation, Flyout will be disabled when the Tabbar is enabled.
The TabBar type disables the flyout.
If you need to enable both Flyout and Tabbar in Maui program, you need to set the MainPage to a FlyoutPage that contains TabbedPage. For example:
<FlyoutPage ...
>
<FlyoutPage.Detail>
<NavigationPage>
<x:Arguments>
<local:MyTabbedPage></local:MyTabbedPage>
</x:Arguments>
</NavigationPage>
</FlyoutPage.Detail>
<FlyoutPage.Flyout>
<local:NewPage></local:NewPage>
</FlyoutPage.Flyout>
</FlyoutPage>
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.