feat: add multiline clock
This commit is contained in:
parent
7fb870b389
commit
b0e6ebc325
2 changed files with 11 additions and 3 deletions
|
@ -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
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
@ -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')
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue