react-native-ui-lib icon indicating copy to clipboard operation
react-native-ui-lib copied to clipboard

Add function to reset the slider values

Open ajp8164 opened this issue 3 years ago • 0 comments

Description

Add a function on the slider component to be able to reset the slider values for single and range slider.

Usage:

import Slider from 'react-native-ui-lib/slider';
...
const slider = useRef();
...
<Slider ref={slider} .../>
...
const resetSlider = () => {
  slider.current?.reset();
}

Changelog

Added ability to reset slider values programatically.

ajp8164 avatar Aug 11 '22 17:08 ajp8164