aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/quick/qquickgridview/data/releaseItems.qml
blob: 19d58550a47f0be4c7043e939606e95e5d61580f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
import QtQuick 2.0

GridView {
    width: 400
    height: 400
    model: 100
    delegate: Rectangle {
        height: 100; width: 100
        color: index % 2 ? "lightsteelblue" : "lightgray"
    }
    contentHeight: contentItem.children.length * 40
}