I have a SfRangeSlider defined as follows:
<?xml version="1.0" encoding="UTF-8"?>
<ContentPage
Title ="Install Device"
xmlns ="http://xamarin.com/schemas/2014/forms"
xmlns:x ="http://schemas.microsoft.com/winfx/2009/xaml"
x:Class ="Smart.Pages.RangeDemoPage"
xmlns:range ="clr-namespace:Syncfusion.SfRangeSlider.XForms;assembly=Syncfusion.SfRangeSlider.XForms"
>
<ContentPage.Content>
<StackLayout>
<range:SfRangeSlider
x:Name ="sfSliderOrientation"
Grid.Row ="4"
Grid.Column ="1"
HeightRequest="90"
WidthRequest ="100"
Minimum ="0"
Maximum ="90"
Value ="{Binding Orientation}"
ShowRange ="false"
TickFrequency="10"
SnapsTo ="Ticks"
Orientation ="Horizontal"
TickPlacement="BottomRight">
</range:SfRangeSlider>
</StackLayout>
</ContentPage.Content>
</ContentPage>
On Android, it's positioning the thumb correctly, but on iOS the thumb is not being positioned correctly -it is just off to the right. I've attached screenshots from Android and iOS.
Is this a known problem?
Attachment:
Archive_3e213ab5.zip