I have inserted an sfRangeSlider, but it does not seem to slide. I only have one thumb with the range set to false. If I have two thumbs, then it seems to slide.
Addit: This seems to only happen on iOS. I think it is because of the automatic page swipe gesture is interfering with this. I am investigating how to turn this off.
An alternative could be to have the two thumbs (range set to true), but the first thumb not to be able to be moved.
Here is my XAML code:
<range:SfRangeSlider
x:Name="rangeslider"
Grid.Column="1"
Minimum="0" Maximum="10"
RangeStart="0" RangeEnd="10"
ShowRange="false"
StepFrequency="1"
SnapsTo="Ticks"
Orientation="Horizontal"
KnobColor="{StaticResource HeadingBackgroundColor}"
TrackColor="{StaticResource HeadingBackgroundColor}"
TickFrequency="1"
TrackSelectionColor="{StaticResource NormalTextColor}"
LabelColor="{StaticResource NormalTextColor}"
Value="0"
>
Thank you