I am testing the Telerik MAUI controls (trial version) and specifically looking into the TabView control. I cannot seem to get the line underneath the selected tab view item to display, as in your documentation:
My code is as follows:
<telerik:RadTabView
x:Name="tabView"
Grid.Row="0"
BackgroundColor="Transparent"
VerticalOptions="Fill">
<telerik:RadTabView.HeaderStyle>
<Style TargetType="telerik:TabViewHeader">
<Setter Property="BackgroundColor" Value="Transparent" />
<Setter Property="HorizontalOptions" Value="Start" />
</Style>
</telerik:RadTabView.HeaderStyle>
<telerik:RadTabView.HeaderItemStyle >
<Style TargetType="telerik:TabViewHeaderItem">
<Setter Property="Padding" Value="10,5" />
<Setter Property="VisualStateManager.VisualStateGroups">
<VisualStateGroupList>
<VisualStateGroup Name="CommonStates">
<VisualState Name="Normal">
<VisualState.Setters>
<Setter Property="TextColor" Value="#99ffffff" />
<Setter Property="FontAttributes" Value="Bold" />
<Setter Property="BackgroundColor" Value="Transparent" />
</VisualState.Setters>
</VisualState>
<VisualState Name="Disabled">
<VisualState.Setters>
<Setter Property="TextColor" Value="#b3b3b3" />
<Setter Property="FontAttributes" Value="Bold" />
<Setter Property="BackgroundColor" Value="Transparent" />
</VisualState.Setters>
</VisualState>
<VisualState Name="Selected">
<VisualState.Setters>
<Setter Property="TextColor" Value="White" />
<Setter Property="FontAttributes" Value="Bold" />
<Setter Property="BackgroundColor" Value="Transparent" />
</VisualState.Setters>
</VisualState>
</VisualStateGroup>
</VisualStateGroupList>
</Setter>
</Style>
</telerik:RadTabView.HeaderItemStyle>
<telerik:RadTabView.ContentStyle>
<Style TargetType="telerik:TabViewContent">
<Setter Property="VerticalOptions" Value="Fill" />
</Style>
</telerik:RadTabView.ContentStyle>
<telerik:TabViewItem HeaderText="Settings">
<Grid BackgroundColor="White">
<Label Margin="10" Text="This is the content of the Settings tab" />
</Grid>
</telerik:TabViewItem>
<telerik:TabViewItem HeaderText="About">
<Label Margin="10" Text="This is the content of the About tab" />
</telerik:TabViewItem>
<telerik:TabViewItem HeaderText="View">
<Label Margin="10" Text="This is the content of the View tab" />
</telerik:TabViewItem>
</telerik:RadTabView>
And my tabview displays as follows (notice the line is missing):
I am running this on Android.
I have also tried to copy and paste some of the tabview examples from your code directly into my program, but I still don't see the line.
I have followed the instructions on getting started. Maybe I'm missing something small. Please assist. Thank you in advance.