aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/declarative/qsggridview/data/gridview4.qml
blob: 01b31da08209b7939a7fc4c8f09c65b97a5e66a1 (plain)
1
2
3
4
5
6
7
8
9
10
11
import QtQuick 2.0

GridView {
    width: 400
    height: 200
    cellWidth: width/9
    cellHeight: height/2

    model: 18
    delegate: Rectangle { objectName: "delegate"; width: 10; height: 10; color: "green" }
}