react-native-slider
react-native-slider copied to clipboard
how to give shadow to thumb
Setting this:
{
shadowOpacity: 0.3,
shadowOffset: {
width: 0,
height: 0,
},
}
To thumbStyle
prop should do it.
For Android you can also add elevation
to thumbStyle.
@EdenGottlieb and @waitopiggu can this thumbShadow be added for Android since I don't see then thumbStyle
property in the Slider component. I see that property only in the web component.