Home > Back-end >  Can I have two tab bars in Xamarin forms?
Can I have two tab bars in Xamarin forms?

Time:12-16

Good day fellow code ninjas!!!

Using a '< TabbedPage/ >' in Xamarin forms I can easily create a tab bar at the top of my page. I would however like to have two tab bars instead of one. For example, 3 tab buttons in the first tab bar row and another 3 in the second row and the user being able to navigate between all 6 pages.

Does anyone perhaps know if this is possible in Xamarin forms and/or if there is any documentation that might assist.

CodePudding user response:

You could use the TabView from the Xamarin Community Toolkit in addition to your TabbedPage

  • Related