summaryrefslogtreecommitdiff
path: root/HeaderToolBar.qml
diff options
context:
space:
mode:
authorꦌꦫꦶꦏ꧀ꦦꦿꦧꦮꦑꦩꦭ꧀ <erik@darapsa.co.id>2023-01-20 10:23:53 +0800
committerꦌꦫꦶꦏ꧀ꦦꦿꦧꦮꦑꦩꦭ꧀ <erik@darapsa.co.id>2023-01-20 10:23:53 +0800
commit73956945976e4e83366ae12af3d4d9d2b7fafc99 (patch)
tree4a6f343ecc78ea5617eff92eeedd604058fc1a0a /HeaderToolBar.qml
parentce132ce5e358578b527a64e4458d234f259e0971 (diff)
Header has some logics in it
Diffstat (limited to 'HeaderToolBar.qml')
-rw-r--r--HeaderToolBar.qml32
1 files changed, 32 insertions, 0 deletions
diff --git a/HeaderToolBar.qml b/HeaderToolBar.qml
new file mode 100644
index 0000000..098f404
--- /dev/null
+++ b/HeaderToolBar.qml
@@ -0,0 +1,32 @@
+import QtQuick 2.15
+import QtQuick.Controls 2.15
+import QtQuick.Layouts 1.15
+
+ToolBar {
+ RowLayout {
+ anchors.fill: parent
+ layoutDirection: Qt.RightToLeft
+ ToolButton {
+ onClicked: optionsMenu.open()
+ Menu {
+ id: optionsMenu
+ y: parent.height
+ Action {
+ text: qsTr("Edit Profile")
+ }
+ Action {
+ text: qsTr("Account Settings")
+ }
+ Action {
+ text: qsTr("Help")
+ }
+ Action {
+ text: qsTr("Sign Out")
+ }
+ Action {
+ text: qsTr("Dark Mode")
+ }
+ }
+ }
+ }
+}