I am trying to make an Application in kivy which uses ScrollView. Is there any way through which I can know if user is scrolling down or scrolling up.
How to know if user is scrolling up or scrolling down in Kivy?
390 views Asked by Yash Jain At
1
You can store mouse position received in
on_scroll_move
and then determine the direction by comparing value you have now with value you've saved before.