I'm trying to customize the appearance of my segmented control and two settings don't seem to be working for me.
SegmentBackgroundColor doesn't seem to work at all, no matter what I set it to, I get white background.
FontColor works when I set it to something other than Black. When I set it to Black, I get Blue.
<Style TargetType="buttons:SfSegmentedControl">
<Setter Property="CornerRadius" Value="15" />
<Setter Property="SegmentHeight" Value="50" />
<Setter Property="SegmentPadding" Value="0" />
<Setter Property="BorderColor" Value="Black" />
<Setter Property="SegmentBorderColor" Value="{Static app:ThemeColors.navColor}" />
<Setter Property="BorderThickness" Value="0" />
<Setter Property="DisplayMode" Value="Text" />
<Setter Property="VerticalOptions" Value="Center" />
<Setter Property="HorizontalOptions" Value="Center" />
<Setter Property="FontColor" Value="Black"/><!-- I get blue instead -->
<Setter Property="SelectionTextColor" Value="White"/>
<Setter Property="BackgroundColor" Value="Black"/>
<Setter Property="Color" Value="Black"/>
<Setter Property="SegmentBackgroundColor" Value="Black"/><!--ignored for some reason-->
<Setter Property="SelectionIndicatorSettings">
<buttons:SelectionIndicatorSettings Color="{Static app:ThemeColors.navColor}"/>
</Setter>
</Style>