I want to make my QML Grid scrollable as soon as the content is too long for it to display.
Grid {
objectName: "sidebarView"
id: sidebarGrid
flow: Grid.TopToBottom
columns: 1
spacing: 10
}
Is that possible with just a few properties added to the Grid?
No, but you can just put a Flickable around the Grid