diff options
Diffstat (limited to 'HeaderToolBar.ui.qml')
-rw-r--r-- | HeaderToolBar.ui.qml | 32 |
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") - } - } - } - } -} |