aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/quick/qquickrepeater/data/objectmodel.qml
blob: 780f53e8023f4387e1da18e96b64d5df7f5376a2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
import QtQuick 2.0
import QtQml.Models 2.1

Row {
    width: 360
    height: 360

    Repeater {
        objectName: "repeater"
        model: ObjectModel {
            Rectangle {
                width: 20
                height: 20
                color: "red"
            }
            Rectangle {
                width: 20
                height: 20
                color: "green"
            }
            Rectangle {
                width: 20
                height: 20
                color: "blue"
            }
        }
    }
}