react-native-slider icon indicating copy to clipboard operation
react-native-slider copied to clipboard

A pure JavaScript <Slider> component for react-native and react-native-web

Results 71 react-native-slider issues
Sort by recently updated
recently updated
newest added

Here's an example of my implementation: ```javascript { // why is this an array? value = Array.isArray(value) ? value[0] : value; setValue(value); }} thumbTintColor={secondaryTextGray} minimumTrackTintColor={secondaryTextGray} maximumTrackTintColor={dividerBorderGray} /> ```

For some reason the track marks are not rendered on the first render. My work around looks like this: `onLayout={() => setTimeout(() => setMarks(trackMarks), 1000)}`

Hello, How do I make it so the slider fills up all the way to the end (and the beginning) when the thumb is bigger than the slider? This is...

If I have a range slider with both ends close to each other, it is always grabbing the left end of the silder. So when I move both ends to...

This patch adds only trackMarksClickable which is needed by me in a project, maybe someone too need this type of feature: [@miblanchard+react-native-slider+2.1.0.patch.txt](https://github.com/miblanchard/react-native-slider/files/8124406/%40miblanchard%2Breact-native-slider%2B2.1.0.patch.txt)

First off, funny that you are also a codesmith guy. I was cohort 12. Nice work on this component! Using it for our video player at Openpath and the renderAboveThumbComponent...

Currently, the slider thumb hovers slightly to the right of the actual position of the user's finger on the screen. This behavior makes it so that sliders which touch the...

I recently ran into a bug in my app which in some scenarios caused it to set the `minimumValue` prop to be greater than the `maximumValue` prop. This in turn...

I'm using the library as a slide of a custom video component, but I need to implement cache loading, something like: ![image](https://user-images.githubusercontent.com/44711552/148848947-2f15b8e4-2827-4ea2-a8be-315fb80f048d.png) cacheValue={playableDuration} cacheTrackTintColor={'#fffff'} PS: Sorry my english I'm not...