Hello,
Welcome to our Microsoft Q&A platform!
i'm having trouble trying to display both the Flyout and TabBar at the same time. So i am here to ask, if, is it possible in the first place?
No, we cannot use the two navigation ways at the same time. The top level of navigation in a Shell application is either a flyout or a bottom tab bar. If you want to display the bottom tabs when using the ShellItem, try using Tab to group the content like below.
<FlyoutItem Title="About" Icon="icon_about.png">
<Tab Title="item_1">
<ShellContent Route="AboutPage" ContentTemplate="{DataTemplate local:page_1}" />
</Tab>
<Tab Title="item_2">
<ShellContent Route="AboutPage" ContentTemplate="{DataTemplate local:page_2}" />
</Tab>
</FlyoutItem>
<FlyoutItem Title="Browse" Icon="icon_feed.png">
<ShellContent Title="page_1" Route="ItemsPage" ContentTemplate="{DataTemplate local:ItemsPage}" />
</FlyoutItem>
Check the doc: https://learn.microsoft.com/en-us/xamarin/xamarin-forms/app-fundamentals/shell/introduction#application-visual-hierarchy
Best Regards,
Jarvan Zhang
If the response is helpful, please click "Accept Answer" and upvote it.
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.