summaryrefslogtreecommitdiff
path: root/HeaderToolBar.ui.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.ui.qml
parentce132ce5e358578b527a64e4458d234f259e0971 (diff)
Header has some logics in it
Diffstat (limited to 'HeaderToolBar.ui.qml')
-rw-r--r--HeaderToolBar.ui.qml32
1 files changed, 0 insertions, 32 deletions
diff --git a/HeaderToolBar.ui.qml b/HeaderToolBar.ui.qml
deleted file mode 100644
index 098f404..0000000
--- a/HeaderToolBar.ui.qml
+++ /dev/null
@@ -1,32 +0,0 @@
-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")
- }
- }
- }
- }
-}