FluentUI/src/colorpicker/content/Checkerboard.qml

17 lines
364 B
QML
Raw Normal View History

2023-03-25 13:35:21 +08:00
import QtQuick 2.15
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"
}
}
}