I'm using the experimental viewpager for Jetpack compose which is built upon LazyColumn
/Row
.
What I'm trying to do is to set some threshold of how much I need to move my finger before it starts to scroll to next page. The default behaviour is that as soon as I move my finger it starts to scroll, but I want to have a larger threshold of how much I need to move the finger before any visual scrolling occur.
I've looked at the FlingBehaviour
parameter, but I don't see how to use that to accomplish what I want. (Or at least add some more "resistance" to flip between the pages, so it's not so sensitive)
Have you got any ideas?