'React Native : RNListSlider - thumbStyle & itemStyle not working in Android

I want to style my List Slider, I used thumbStyle prop but this isn't working in android any suggestions ?

<RNListSlider
    mainContainerStyle={{ backgroundColor: "#F3F5F9" }}
    thumbStyle={{ color: 'green' }}
    tenthItemStyle={{}}
    itemStyle={{ color: 'red' }}
    value={num}
    onValueChange={vl => setNum(vl)}
/>


Sources

This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.

Source: Stack Overflow

Solution Source