ScrollView widget
A scrollable frame.
scrollview = ScrollView(
app,
overflow=(False, "auto"),
padding=(1, 2, 3, 4),
)
How does it now when to stop the scrolling?
How does it now when to stop the scrolling?
No, the user will scroll the frame
Here is what I meant to ask: Is there a limit to how long/much they can scroll? Will it limit it to the length/width of the widgets inside?
Is there a limit to how long/much they can scroll? Will it limit it to the length/width of the widgets inside?
No, it won't.
Ok 👍 Is there a way to add a limit?
Yes, I could implement some limit control, but I don't really see its benefit 🤔
That makes sense. I was thinking so that the user could make something similar to a webpage but not let the user scroll out into infinity
Na yeah, neither thought I to scroll into infinity. Maybe I was a bit ambiguous. So it can only scroll until there's content, and not more (so that's why I didn't understand you limit question, there's no need for it).
Na yeah, neither thought I to scroll into infinity. Maybe I was a bit ambiguous. So it can only scroll until there's content, and not more (so that's why I didn't understand you limit question, there's no need for it).
That makes more sense. Thanks for the clarification!
I have a basic Scrollable Frame in one of my own projects that could be forged but I still need help fixing some kinks with it.
Wouldn't that basically be a Frame with a scrollbar binded to it?
No, they don't scroll so you have to make a solution with a canvas and inner frame. It's weird.