feat: add multiline clock

This commit is contained in:
Nydragon 2024-08-23 14:57:10 +02:00
parent 7fb870b389
commit b0e6ebc325
Signed by: nydragon
SSH key fingerprint: SHA256:iQnIC12spf4QjWSbarmkD2No1cLMlu6TWoV7K6cYF5g
2 changed files with 11 additions and 3 deletions

View file

@ -14,11 +14,13 @@ Scope {
left: true
bottom: true
}
width: 20
// the ClockWidget type we just created
// TODO: on click open a calendar view
ClockWidget {
anchors.centerIn: parent
anchors.horizontalCenter: parent.horizontalCenter
}
}
}

View file

@ -1,5 +1,11 @@
import QtQuick
import QtQuick.Layouts
Text {
text: Time.time
ColumnLayout {
Text {
text: String(Time.date.getHours()).padStart(2, '0')
}
Text {
text: String(Time.date.getMinutes()).padStart(2, '0')
}
}