Hi,
I was wondering if it's possible to change the hover color for tabs? When using SfTabView in a dark color scheme in a UWP app, the highlight is too light and doesn't allow for controlling the contrast of the text against the background:
I can't spot a color that would allow me to do it - would it be possible to deal with this using a custom renderer?
Sample code for the above:
<?xml version="1.0" encoding="UTF-8" ?>
<ContentView
x:Class="MyControl"
xmlns="http://xamarin.com/schemas/2014/forms"
xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"
xmlns:tabView="clr-namespace:Syncfusion.XForms.TabView;assembly=Syncfusion.SfTabView.XForms">
<ContentView.Resources>
<Style
TargetType="tabView:SfTabItem">
<Setter
Property="TitleFontSize"
Value="18" />
<Setter
Property="SelectionColor"
Value="White" />
<Setter
Property="TitleFontColor"
Value="White" />
</Style>
</ContentView.Resources>
<ContentView.Content>
<Grid>
<tabView:SfTabView
BackgroundColor="Black"
DisplayMode="Text"
EnableSwiping="False"
IsScrollButtonEnabled="False"
TabHeaderBackgroundColor="Black"
TabHeight="50"
VisibleHeaderCount="2">
<tabView:SfTabItem
Title="Tab 1">
<tabView:SfTabItem.Content>
<Grid />
</tabView:SfTabItem.Content>
</tabView:SfTabItem>
<tabView:SfTabItem
Title="Tab 2">
<tabView:SfTabItem.Content>
<Grid />
</tabView:SfTabItem.Content>
</tabView:SfTabItem>
</tabView:SfTabView>
</Grid>
</ContentView.Content>
</ContentView>
Thanks,
Mike