forked from ghostfox/qyouradio
16 lines
443 B
QML
16 lines
443 B
QML
import QtQuick 6.8
|
|
import QtQuick.Controls 6.8
|
|
import QtQuick.Controls.Basic 6.8
|
|
|
|
CheckBox {
|
|
implicitWidth: 14
|
|
implicitHeight: 14
|
|
contentItem: Rectangle {
|
|
anchors.fill: parent
|
|
radius: 2
|
|
color: parent.checked ? (parent.hovered ? Colors.primaryAlt : Colors.primary) : "#fff"
|
|
border.color: parent.checked ? (parent.hovered ? Colors.primaryAlt : Colors.primary) : "#000"
|
|
border.width: 1
|
|
}
|
|
}
|