diff --git a/src/Bar.qml b/src/Bar.qml index db81a25..2b935ee 100644 --- a/src/Bar.qml +++ b/src/Bar.qml @@ -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 } } } diff --git a/src/ClockWidget.qml b/src/ClockWidget.qml index c8899a0..6d25578 100644 --- a/src/ClockWidget.qml +++ b/src/ClockWidget.qml @@ -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') + } }