Skip to content Skip to sidebar Skip to footer

Kivy Scrollview Can't Scroll

FileView extends the kivy ScrollView. In the app I can see three out of the four image, but I am not able to scroll to the fourth image. Therefore the widget is larger than my app

Solution 1:

In GridLayout kv code instead of:

minimum_height: self.minimum_height

do:

height: self.minimum_height

Then it should work just fine. :)

Also, in future try NOT to include custom modules you made (import unknown_module...) as it makes the code hard to reproduce unless the other person knows what to look for...

Post a Comment for "Kivy Scrollview Can't Scroll"