diff options
Diffstat (limited to 'features/HomeForm.ui.qml')
-rw-r--r-- | features/HomeForm.ui.qml | 20 |
1 files changed, 4 insertions, 16 deletions
diff --git a/features/HomeForm.ui.qml b/features/HomeForm.ui.qml index baa78a6..1d82f31 100644 --- a/features/HomeForm.ui.qml +++ b/features/HomeForm.ui.qml @@ -7,22 +7,10 @@ Page { id: page title: qsTr("Today") - RoundButton { - id: roundButton - width: 64 - height: 64 - display: AbstractButton.IconOnly - spacing: 8 - - padding: 16 - anchors.bottom: parent.bottom - anchors.bottomMargin: 8 - anchors.right: parent.right - anchors.rightMargin: 8 - highlighted: true - - icon.name: "add-icon" - icon.source: "/assets/add-24px.svg" + Label { + text: qsTr("this is today") + anchors.horizontalCenter: parent.horizontalCenter + anchors.verticalCenter: parent.verticalCenter } } |