aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/qtquick2/qquickgridview/data/unaligned.qml
blob: 445400e8b4369a5c558543958af16d8165a5290d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
import QtQuick 2.0

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

    model: testModel
    delegate: Rectangle {
        objectName: "wrapper"; width: 10; height: 10; color: "green"
        Text { text: index }
    }
}