Skip to content Skip to sidebar Skip to footer

Kivy ScrollView - Not Scrolling

Looks like a common problem people have with Kivy. I've already checked other questions for the same problem here on SO but no luck. I have a container BoxLayout: class Cnt(BoxLayo

Solution 1:

Change

minimum_height: self.height

to

height: self.minimum_height

The minimum_height is what's calculated as needed for all the children. You want the actual height to be equal to the minimum height, even if it's larger than the parent's height (for scrolling, this is exactly what you want).


Post a Comment for "Kivy ScrollView - Not Scrolling"