I am using rn-range-slider library for my slider View. After sliding the rn-range-slider I want to reset the slider to its original position I have tried clearing the states but the slider remains unchanged any clue how to resolve this?
<RangeSlider
rangeEnabled={true}
style={{width: '95%', height: 60, bottom: 20}}
gravity={'center'}
min={0}
max={10000}
step={20}
selectionColor="#B20C11"
blankColor="#F2F0F1"
onValueChanged={(low, high, fromUser) => {
minValue = low;
maxValue = high;
}}
/>