Closed tuke307 closed 3 years ago
I am trying to achieve same thing :)
I switched to sharpnado's tabhostview. its fully customizable and you can hide the header
In the latest version you can design a custom header yourself. Here's an example :
<tabview:TabViewControl.TabHeaderItemTemplate>
<DataTemplate>
<StackLayout Padding="10,0">
<Label
Margin="0,10,0,5"
FontSize="16"
HorizontalTextAlignment="Center"
Text="{Binding HeaderText}"/>
<BoxView
BackgroundColor="Red"
HeightRequest="3"
IsVisible="{Binding IsCurrent}" />
</StackLayout>
</DataTemplate>
</tabview:TabViewControl.TabHeaderItemTemplate>
Is it possible to hide the complete header and selection?
For now I do this;
But that's not the perfect solution because it gaves me blank non usable area.