feat: style clock widget similarly to audio widget, increase font weight and make reactive
This commit is contained in:
parent
93f038aefb
commit
cd382d4177
1 changed files with 28 additions and 6 deletions
|
@ -1,11 +1,33 @@
|
||||||
import QtQuick
|
import QtQuick
|
||||||
import QtQuick.Layouts
|
import QtQuick.Layouts
|
||||||
|
import "provider"
|
||||||
|
|
||||||
ColumnLayout {
|
Rectangle {
|
||||||
|
width: parent.width
|
||||||
|
height: clock.height * 1.5
|
||||||
|
anchors.bottomMargin: 5
|
||||||
|
anchors.topMargin: 5
|
||||||
|
border.color: "black"
|
||||||
|
border.width: 2
|
||||||
|
radius: 5
|
||||||
|
|
||||||
|
Rectangle {
|
||||||
|
id: clock
|
||||||
|
height: hours.height + minutes.height
|
||||||
|
anchors.centerIn: parent
|
||||||
|
anchors.verticalCenter: parent.verticalCenter
|
||||||
Text {
|
Text {
|
||||||
|
id: hours
|
||||||
|
anchors.horizontalCenter: parent.horizontalCenter
|
||||||
|
font.weight: Font.ExtraBold
|
||||||
text: String(Time.date.getHours()).padStart(2, '0')
|
text: String(Time.date.getHours()).padStart(2, '0')
|
||||||
}
|
}
|
||||||
Text {
|
Text {
|
||||||
|
id: minutes
|
||||||
|
anchors.top: hours.bottom
|
||||||
|
anchors.horizontalCenter: parent.horizontalCenter
|
||||||
|
font.weight: Font.ExtraBold
|
||||||
text: String(Time.date.getMinutes()).padStart(2, '0')
|
text: String(Time.date.getMinutes()).padStart(2, '0')
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
}
|
||||||
|
|
Loading…
Add table
Reference in a new issue