Implemented time adjustment on the board

This commit is contained in:
Yury Shuvakin
2022-09-16 06:57:03 +03:00
parent dd63a2bf4c
commit 1d77dcbfcd
9 changed files with 668 additions and 10 deletions

View File

@@ -27,6 +27,10 @@ RowLayout {
property string title: qsTr("Network settings")
}
Screens.TimeSettingsScreen {
id: timeSettingsScreen
property string title: qsTr("Time settings")
}
Layout.fillWidth: true
Layout.fillHeight: true
@@ -36,7 +40,12 @@ RowLayout {
spacing: 20
Repeater {
model: [terminalScreen.title, firmwareUpdateScreen.title, networkSettingsScreen.title]
model: [
terminalScreen.title,
firmwareUpdateScreen.title,
networkSettingsScreen.title,
timeSettingsScreen.title
]
delegate: Controls.LinkLabel {
text: modelData
onClicked: stack.currentIndex = index