Rests view was added

This commit is contained in:
2023-04-13 16:02:28 +02:00
parent f0b38d8fda
commit fc1d96437f
9 changed files with 180 additions and 10 deletions

View File

@@ -83,6 +83,7 @@ ApplicationWindow {
readonly property var actions: {
"orders": () => { stackView.openPage("Views/OrdersView.qml") },
"rests": () => { stackView.openPage("Views/RestsView.qml") },
"settings": () => { stackView.openPage("Views/SettingsView.qml") },
"quit": () => { Qt.quit() }
}
@@ -99,6 +100,10 @@ ApplicationWindow {
title: qsTr("Orders")
action: "orders"
}
ListElement {
title: qsTr("Rests")
action: "rests"
}
ListElement {
title: qsTr("Settings")
action: "settings"