FluentUI/src/colorpicker/content/Checkerboard.qml

17 lines
359 B
QML
Raw Normal View History

2023-03-24 20:44:38 +08:00
import QtQuick
2023-03-23 17:40:10 +08:00
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"
}
}
}