Restructure project

This commit is contained in:
Dark Steveneq
2025-10-11 02:30:58 +02:00
parent a4dfc5b9bc
commit 6bcee551de
26 changed files with 369 additions and 259 deletions

View File

@@ -0,0 +1,13 @@
import QtQuick 6.8
import QtQuick.Controls 6.8 as QC
QC.CheckBox {
contentItem: Rectangle {
radius: 2
color: parent.checked ? (parent.hovered ? Colors.primaryAlt : Colors.primary) : "#fff"
border.color: parent.checked ? (parent.hovered ? Colors.primaryAlt : Colors.primary) : "#fff"
border.width: 1
implicitWidth: 14
implicitHeight: 14
}
}