Clock and calendar

This commit is contained in:
quadbyte 2025-08-09 18:00:57 -04:00
parent 0e037561f3
commit bce57c101a
12 changed files with 530 additions and 4 deletions

View file

@ -14,6 +14,7 @@ Rectangle {
property bool hovering: false
property var onEntered: function () {}
property var onExited: function () {}
property var onClicked: function () {}
implicitWidth: size
implicitHeight: size
@ -45,5 +46,8 @@ Rectangle {
hovering = false
root.onExited()
}
onClicked: {
root.onClicked()
}
}
}