aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/quick/qquickrepeater/data/properties.qml
blob: 035431c7843374939bdf77c7d6e3d655b7b13080 (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 
        } 
    }
}