markerStyle not working when I disable the slider
Hello. I am setting enabledOne={false} and/or enabledTwo={false} to disable my component, but my custom markerStyle is returning to the original shape of the marker; i.e. markerStyle is not working when the marker is disabled. However, implementing a customMarker gave me the results I desire, but I think it's not easy for the developer to think of this solution immediately (I spent almost a week thinking about it). I really like your component since it's is almost the only one that provides multiple markers, so I am opening this issue for you to take into consideration this special case and either add it in the documentation or provide a fix for it. Thanks for the amazing component, and wish you more to go!
Thanks! Will try to fix this.
Hey! Was this followed on?
Hi, I also encountered this problem, the best I could think of was to overlap the block with another transparent block.
<View style={[containerStyle, { position: 'relative' }]}>
<View style={{ position: 'absolute', top: 0, bottom: 0, left: 0, right: 0, zIndex: 999 }} />
<MultiSlider {...otherProps} />
</View>