diff options
author | Anatasof Wirapraja <anatasof.wirapraja@gmail.com> | 2019-09-20 11:53:01 +0700 |
---|---|---|
committer | Anatasof Wirapraja <anatasof.wirapraja@gmail.com> | 2019-09-20 11:53:01 +0700 |
commit | cbd22506b7d0cec453e1a56d72faf07c57ee3a4f (patch) | |
tree | db5ec85f850195409adde530d8032af62014a994 /features | |
parent | 83f76aec9eed38f5dbf4e2418c47fba890f3143e (diff) |
remove `roundButton`
Diffstat (limited to 'features')
-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 } } |