I'm refactoring a project to the new navigation with shell that was released with Xamarin.Forms 4.0 and now I was migrating a tabbedPage that had an effect applied to hide the title of the children from the tabbedPage leaving the icons only visible, with Shell it is no longer necessary that the page inherits from TabbedPage if not that the own class of Shell allows you to implement the tabbedPage, masterPage ... the problem is that now I do not know how I can apply the effect I used previously since I can not refer to the tabbedPage.
Note: In this case I use Flyout since I need a design with a hamburger menu and also tabbedPage, that's why I do not use only the TabBar.
<FlyoutItem Route="home"
Title="TEST"
Icon="home_icon"
FlyoutDisplayOptions="AsMultipleItems">
<ShellContent Route="bottomtab1"
Title="TEST1"
Icon="target_icon"
ContentTemplate="{DataTemplate views:x}" />
<ShellContent Route="bottomtab2"
Title="TEST2"
Icon="user_login"
ContentTemplate="{DataTemplate views:y}" />
</FlyoutItem>