qt6-bb10/qtdeclarative/tests/auto/quick/qquickgridview/data/gridview4.qml

12 lines
217 B
QML

import QtQuick 2.0
GridView {
width: 405
height: 200
cellWidth: width/9
cellHeight: height/2
model: 18
delegate: Rectangle { objectName: "delegate"; width: 10; height: 10; color: "green" }
}