React Native - How do I make a Slider behave differently on click?

Hello, I need help implementing a slider for a player in react native and react native web, I want to have the slider clicked and changed the value/position to the clicked area. I currently implemented https://github.com/ptomasroos/react-native-multi-slider/ and https://github.com/react-native-community/react-native-slider/ but they only support dragging the thumb markers. Would really appreciate any help or ideas for this. Thanks.
cc @marc @dilara

Dragging is standard behavior on slider components with multiple scales. You can write a simple onClick method that modifies the behavior when you click the component if you want a nonstandard behavior.