I am trying to create a scroll view around a ColumnLayout, unfortunately my current code doesn\'t work. I know about ListView, but in my case I need to create scrollable Lay
Same problem on my side. This worked for me :
ScrollView {
width: parent.width
height : parent.height
contentWidth: column.width // The important part
contentHeight: column.height // Same
clip : true // Prevent drawing column outside the scrollview borders
Column {
id: column
width: parent.width
// Your items here
}
}