1 import Qt 4.7
2
3 Row {
4 Repeater {
5 objectName: "repeater"
6 model: 5
7 Text {
8 text: "I'm item " + index
9 }
10 }
11 }