SimformSolutionsPvtLtd / react-native-radial-slider

React Native component to select or highlight a specific value from a range of values 👌 ✨
MIT License
139 stars 12 forks source link

[Request] Slider track color to have linearGradient option #53

Closed hristo87 closed 4 months ago

hristo87 commented 5 months ago

Could you please add option for slider track color to use Linear Gradient as well. It will be useful for controlling a temperature, for instance blue from one side going to red from the other. Thank you in advance!

6ase commented 4 months ago

Its already done:

 linearGradient={
          [ { offset: '0%', color: THEME_CONSTANTS.COLORS[theme].CIRCLE_SLIDER.START },
           { offset: '50%', color: THEME_CONSTANTS.COLORS[theme].CIRCLE_SLIDER.END }]}
hristo87 commented 4 months ago

thanks!