aboutsummaryrefslogtreecommitdiffstats
path: root/tests/benchmarks/qml/librarymetrics_performance/data/repeater.1.qml
blob: 9c935cf9a8afa39014a8c6775eec6b1e1e8425e4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
import QtQuick 2.0

Row {
    Repeater {
        model: 3
        Rectangle {
            width: 100
            height: 40
            border.width: 2
            color: "red"
        }
    }
}