react-native-slider
react-native-slider copied to clipboard
Multislide support
Hi guys,
thanks a lot for great job. Just a question here: How can I add another slider to have a range?
Thanks a lot.
Agree with @anahitsk123 , that would be super awesome!
This would be extremely useful
Multiple sliders are working on my side 🤔 Maybe this was included on one of the latest updates
@HugoHeneault there's nothing in the readme about multi-slider support, can you show a snippet of your component?
Well I just created multiple sliders in a loop...
{this.questions.map((question, i) =>
<View style={styles.sliderContainer} key={i}>
<Slider
minimumValue={0}
maximumValue={12}
value={question.answer}
onValueChange={value => question.answer = value}}
/>
</View>
)}
@HugoHeneault Oh I see, I interpreted this issue as one slider with multiple markers like this package https://github.com/JackDanielsAndCode/react-native-multi-slider. But now that I'm looking at this again I think it's a little ambiguous.
I really need this feature! I've used react-native-multi-slider
too, but It wasn't as customizable as react-native-slider
. Please add this feature!
Need it too.