qt6-bb10/qtdeclarative/tests/auto/quick/qquickrepeater/data/modelCleared.qml

18 lines
284 B
QML

import QtQuick 2.0
Row {
spacing: 2
height: 100
Repeater {
id: repeater
objectName: "repeater"
model: 10
Rectangle {
color: "green"
width: 10; height: 50
anchors.bottom: parent.bottom
}
}
}