Increase size of the slider thumb in react-native on android

Viewed 11061

Is there a way to make slider's button/thumb (that green circle) bigger, to set height and width. In iOS, it looks nice, but on Android is so small.

enter image description here

2 Answers

Apply this on element style:

transform: [{ scaleX: 1.5 }, { scaleY: 1.5 }]

As of now, there is no props that you can supply to the slider component to make the thumb bigger. Of-course you can customise the thumb for iOS as per react-native documentation but not for android.

There is library that you can make use of here -> react-native-slider

This is a pure javascript library that make use of Animated and PanResponder.

Related