jeanregisser / react-native-slider

A pure JavaScript <Slider> component for react-native
MIT License
1.3k stars 573 forks source link

how to give shadow to thumb #58

Open nimabk82 opened 7 years ago

EdenGottlieb commented 7 years ago

Setting this:

{
    shadowOpacity: 0.3,
    shadowOffset: {
      width: 0,
      height: 0,
    },
}

To thumbStyle prop should do it.

waitopiggu commented 6 years ago

For Android you can also add elevation to thumbStyle.

Rajalakshmi001 commented 2 years ago

@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.