summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorꦌꦫꦶꦏ꧀ꦦꦿꦧꦮꦑꦩꦭ꧀ <erik@darapsa.co.id>2022-02-02 11:58:23 +0800
committerꦌꦫꦶꦏ꧀ꦦꦿꦧꦮꦑꦩꦭ꧀ <erik@darapsa.co.id>2022-02-02 11:58:23 +0800
commit46d669bc505b88e51c9905883a04c931e9f80329 (patch)
tree91632fe1f4f2285baa3795bf22309dc04bd777cc
parent0e6aa80265672dbc20a2d3ff5014f958c8fa072a (diff)
Hide the buttons for now
-rw-r--r--features/HomeForm.ui.qml8
1 files changed, 6 insertions, 2 deletions
diff --git a/features/HomeForm.ui.qml b/features/HomeForm.ui.qml
index a160c88..b4d1bac 100644
--- a/features/HomeForm.ui.qml
+++ b/features/HomeForm.ui.qml
@@ -4,8 +4,8 @@ import QtQuick.Controls.Material 2.15
import QtQuick.Layouts 1.15
Page {
- property alias menuButton: menuButton
- property alias profileButton: profileButton
+ //property alias menuButton: menuButton
+ //property alias profileButton: profileButton
property alias contentView: contentView
header: ToolBar {
@@ -15,12 +15,14 @@ Page {
RowLayout {
anchors.fill: parent
spacing: 0
+ /*
ToolButton {
id: menuButton
icon.name: "menu-button"
icon.source: "/components/icons/menu-24px.svg"
highlighted: true
}
+ */
Label {
text: contentView.currentItem.title
Layout.leftMargin: 16
@@ -33,12 +35,14 @@ Page {
color: "#000000"
Layout.fillWidth: true
}
+ /*
ToolButton {
id: profileButton
icon.name: "profile-button"
icon.source: "/components/icons/profile-24px.svg"
highlighted: true
}
+ */
}
}