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

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