githuboftigran / rn-range-slider

A native slider with range
MIT License
234 stars 130 forks source link

Want to Add Size Slider #66

Closed ladaniavadh closed 3 years ago

ladaniavadh commented 3 years ago

Hello, I want to add size slider like XXS to XXL and in tooltip same will be shown line S, M, L etc.

is there any way to add the slider like this?

githuboftigran commented 3 years ago

In v2 you can pass a renderLabel prop which can render anything you need. So to achieve this you need sizes mapped to numbers like: const sizes = ['XXS', 'XS', 'S', 'M', 'L', 'XL', 'XXL' ]; Set min={0} max={sizes.length - 1} And draw the label: renderLabel={value => <Label text={sizes[value]}/>}

Your custom label component should get the text property and show it in a balloon or whatever it renders.