Ask Your Question

Revision history [back]

click to hide/show revision 1
initial version

The method for scrolling down using ScrollView in Kivy is to use the ScrollView.scrolly property. This property ranges from 0 to 1, with 0 being at the top of the ScrollView and 1 being at the bottom. To scroll down, set the ScrollView.scrolly property to a value greater than the current value. For example, to scroll down by 10% of the ScrollView height:

from kivy.uix.scrollview import ScrollView

scrollView = ScrollView()

# Scroll down by 10%
scrollView.scroll_y += 0.1