aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/declarative/qdeclarativerepeater/data/properties.qml
blob: 689a103082e71677884414d22ad03c9505d3007a (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 
        } 
    }
}