I'm using the bottom navigation that Xamarin Forms offers in new Xamarin.Forms nuget. I followed this guide (https://15mgm15.ghost.io/2018/06/06/bottom-tabbed-page-for-xamarin-forms-android/) The issue I'm having is that the tabs disappear when I navigate inside a tab.
This is the code I have:
<TabbedPage.Children>
<local:Views.Page1 Title="Welcome" Icon="welcome"/>
<local:Views.Page2 Title="My Account" Icon="acc"/>
<local:Views.Page3 Title="Clothes" Icon="clothes"/>
<local:Views.Page4 Title="Support" Icon="support"/>
<local:Views.Page5 Title="About" Icon="about"/>
</TabbedPage.Children>
And this is in the code behind:
InitializeComponent();
On<Xamarin.Forms.PlatformConfiguration.Android>().SetToolbarPlacement(ToolbarPlacement.Bottom);
I'm using PushAsync to get to pages inside tabs.
Appreciate all the help I can get, thanks!