I\'m struggling for last few days with TabbedPage
in Xamarin.Forms on iOS. I found some solutions like those:
https://forums.xamarin.com/discussion/20901/hide-t
There is a solution that doesn't require any renders and works on both Android and iOS.
Wrap the TabbedPage
in a NavigationPage
so the structure of your app becomes
On the TabbedPage you have to hide the navigationbar of the 'root' NavigationPage, otherwise you have 2 navbars.
If you push a page using the 'root' NavigationPage
, the tabbar is hidden and there is no blank space at the bottom.
See my example at: https://github.com/Jfcobuss/HideTabbarExample/tree/master/HideTabbarExample