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