qt6-bb10/qtdeclarative/tests/auto/quick/qquickflickable/data/cancel.qml

16 lines
310 B
QML

import QtQuick 2.0
Flickable {
width: 200; height: 200
contentWidth: row.width; contentHeight: row.height
Row {
id: row
objectName: "row"
Repeater {
model: 4
Rectangle { width: 400; height: 600; color: "yellow"; border.width: 1 }
}
}
}