summaryrefslogtreecommitdiffstats
path: root/tests/auto/declarative/qdeclarativerepeater/data/properties.qml
blob: 33d2dacfb31c475e45edec52c645ab4b52312d28 (plain)
1
2
3
4
5
6
7
8
9
10
11
import QtQuick 1.0

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