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

14 lines
225 B
QML

import QtQuick 2.14
Item {
Column {
Repeater {
model: ["apples", "oranges", "pears"]
Text {
id: txt
text: modelData + index
}
}
}
}