mirror of
https://github.com/JulianGro/overte.git
synced 2025-04-25 18:15:10 +02:00
16 lines
360 B
QML
16 lines
360 B
QML
import QtQuick 2.0
|
|
|
|
Grid {
|
|
id: root
|
|
property int cellSide: 5
|
|
anchors.fill: parent
|
|
rows: height/cellSide; columns: width/cellSide
|
|
clip: true
|
|
Repeater {
|
|
model: root.columns*root.rows
|
|
Rectangle {
|
|
width: root.cellSide; height: root.cellSide
|
|
color: (index%2 == 0) ? "gray" : "white"
|
|
}
|
|
}
|
|
}
|