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

12 lines
160 B
QML

import QtQuick 2.0
Row {
Repeater {
objectName: "repeater"
model: 5
Text {
text: "I'm item " + index
}
}
}