diff options
| author | ꦌ ꦫꦶ ꦏ꧀ꦦꦿ ꦧ ꦮ ꦑ ꦩ ꦭ꧀ <erik@darapsa.co.id> | 2019-09-24 22:05:01 +0800 |
|---|---|---|
| committer | ꦌ ꦫꦶ ꦏ꧀ꦦꦿ ꦧ ꦮ ꦑ ꦩ ꦭ꧀ <erik@darapsa.co.id> | 2019-09-24 22:05:01 +0800 |
| commit | e5d1cb6db260c71e2205c4f65d383628bb518f5e (patch) | |
| tree | 00212ed61a0bdb79985d8bf7196461ba026cd9e2 /features/HomeForm.ui.qml | |
| parent | 372de3c1c8fb8d7be23713d51c1d4c926b7fcb10 (diff) | |
All forms and icons are moved here
Diffstat (limited to 'features/HomeForm.ui.qml')
| -rw-r--r-- | features/HomeForm.ui.qml | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/features/HomeForm.ui.qml b/features/HomeForm.ui.qml index c44aac5..299cf77 100644 --- a/features/HomeForm.ui.qml +++ b/features/HomeForm.ui.qml @@ -5,7 +5,6 @@ import QtQuick.Layouts 1.12 Page { property alias menuButton: menuButton - property alias titleLabel: titleLabel property alias profileButton: profileButton property alias contentView: contentView @@ -19,10 +18,11 @@ Page { ToolButton { id: menuButton icon.name: "menu-button" + icon.source: "/components/icons/menu-24px.svg" highlighted: true } Label { - id: titleLabel + text: contentView.currentItem.title Layout.leftMargin: 16 verticalAlignment: Text.AlignVCenter horizontalAlignment: Text.AlignLeft @@ -36,6 +36,7 @@ Page { ToolButton { id: profileButton icon.name: "profile-button" + icon.source: "/components/icons/profile-24px.svg" highlighted: true } } |