I am using the code below and please see how it looks like on Android and how it looks like on UWP
<buttons:SfSegmentedControl SelectionChanged="segmentedControl_SelectionChanged" SelectedIndex="{Binding SelectedDatetype, Mode=OneWay}"
x:Name="segmentedControl" Margin="10,10,10,0" CornerRadius="15" BorderColor="#048EAC" Color="#048EAC" DisplayMode="Text"
VisibleSegmentsCount="4" FontColor="Black" SelectionTextColor="White" HorizontalOptions="Center" ItemsSource="{Binding Datetypes}">
<buttons:SfSegmentedControl.FontSize>
<OnIdiom x:TypeArguments="x:Double" Phone="30" Tablet="40" Desktop="50" />
</buttons:SfSegmentedControl.FontSize>
<buttons:SfSegmentedControl.SelectionIndicatorSettings>
<buttons:SelectionIndicatorSettings
Position="Fill">
</buttons:SelectionIndicatorSettings>
</buttons:SfSegmentedControl.SelectionIndicatorSettings>
</buttons:SfSegmentedControl>
Android
UWP
1) it looks like that Android doesnt respect the Color it only sets the inline borders as #048EAC" but UWP fills in strangely. I dont actually know what Color attribute supposed to do.
2) UWP selection inline color doesnt fill but android does.
3) UWP is much smaller than Android. how to increase the size, i couldnt figure out