aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/quick/qquickrepeater/data/properties.qml
blob: 18d014f96ded639f482990e7938921faf9de5c75 (plain)
1
2
3
4
5
6
7
8
9
10
11
import QtQuick 2.0

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