QML ScrollView with ColumnLayout
问题 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 Layout, because it will contain heterogeneous elements. ApplicationWindow { id: mainwindow title: qsTr("Hello World") width: 300 height: 300 visible: true ScrollView { anchors.fill: parent ColumnLayout { width: mainwindow.width Image { anchors.bottomMargin: 10 source: "img/button.jpg" width: parent.width height: 400 } Image {