I am working on a react native project... one of my cases I need to use Slider component in react-native.
<Slider
minimumTrackTintColor='blue'
maximumTrackTintColor='red'
width={300}
value={16}
minimumValue ={0}
maximumValue={100}
/>
I can control the width of the Slider component but I need to increase the height of the Slider. Are any suggestions there?
