ВЯ
Size: a a a
ВЯ
E
Е
Е
ApplicationWindow {
visible: true
width: 640
height: 480
title: qsTr("Scroll")
ScrollView {
anchors.fill: parent
ListView {
width: parent.width
model: 20
interactive: !flicking
delegate: ItemDelegate {
text: "Item " + (index + 1)
width: parent.width
}
}
}
}
Е
ApplicationWindow {
visible: true
width: 640
height: 480
title: qsTr("Scroll")
ScrollView {
anchors.fill: parent
ListView {
width: parent.width
model: 20
interactive: !flicking
delegate: ItemDelegate {
text: "Item " + (index + 1)
width: parent.width
}
}
}
}
RG
RG