Skip to content Skip to sidebar Skip to footer

Kivy -- Scroll View Not Working. And And How Add Chat Users On Side Pane

I'm trying to do write a chat application with an interface that has users names on the side pane that's scrollable. I have 2 questions: 1- This code is not scrolling, please let m

Solution 1:

Resubmitting as answer as requested :)

the error is on the binding,

scroll_layout.bind(minimum_height=scroll_layout.setter('height'))

is what you need, so scrool_layout height is updated when it minimum_heigh is updated.

Post a Comment for "Kivy -- Scroll View Not Working. And And How Add Chat Users On Side Pane"