feat: style clock widget similarly to audio widget, increase font weight and make reactive

This commit is contained in:
Nydragon 2024-08-25 04:02:21 +02:00
parent 93f038aefb
commit cd382d4177
Signed by: nydragon
SSH key fingerprint: SHA256:iQnIC12spf4QjWSbarmkD2No1cLMlu6TWoV7K6cYF5g

View file

@ -1,11 +1,33 @@
import QtQuick import QtQuick
import QtQuick.Layouts import QtQuick.Layouts
import "provider"
ColumnLayout { Rectangle {
Text { width: parent.width
text: String(Time.date.getHours()).padStart(2, '0') height: clock.height * 1.5
} anchors.bottomMargin: 5
Text { anchors.topMargin: 5
text: String(Time.date.getMinutes()).padStart(2, '0') border.color: "black"
border.width: 2
radius: 5
Rectangle {
id: clock
height: hours.height + minutes.height
anchors.centerIn: parent
anchors.verticalCenter: parent.verticalCenter
Text {
id: hours
anchors.horizontalCenter: parent.horizontalCenter
font.weight: Font.ExtraBold
text: String(Time.date.getHours()).padStart(2, '0')
}
Text {
id: minutes
anchors.top: hours.bottom
anchors.horizontalCenter: parent.horizontalCenter
font.weight: Font.ExtraBold
text: String(Time.date.getMinutes()).padStart(2, '0')
}
} }
} }