diff options
-rw-r--r-- | main.qml | 40 |
1 files changed, 31 insertions, 9 deletions
@@ -1,20 +1,42 @@ import QtQuick 2.12 import QtQuick.Controls 2.12 import QtQuick.Controls.Material 2.12 +import QtQuick.Layouts 1.12 ApplicationWindow { - id: appWindow - width: 360 - height: 640 - visible: true + id: appWindow + width: 360 + height: 640 + visible: true Material.accent: Material.DeepPurple - StackView { - id: stackView - anchors.fill : parent + header: ToolBar { + RowLayout { + anchors.fill: parent + ToolButton { + text: qsTr("‹") + onClicked: stack.pop() + } + Label { + text: "Title" + elide: Label.ElideRight + horizontalAlignment: Qt.AlignHCenter + verticalAlignment: Qt.AlignVCenter + Layout.fillWidth: true + } + ToolButton { + text: qsTr("⋮") + onClicked: menu.open() + } + } + } - initialItem: Login {} - } + StackView { + id: stackView + anchors.fill : parent + + initialItem: Login {} + } } |