Implemented network settings

This commit is contained in:
Yury Shuvakin
2022-09-16 03:22:47 +03:00
parent 4dd1f95193
commit 12c4535e06
11 changed files with 401 additions and 30 deletions

View File

@@ -22,6 +22,12 @@ RowLayout {
property string title: qsTr("Firmware update")
}
Screens.NetworkSettingsScreen {
id: networkSettingsScreen
property string title: qsTr("Network settings")
}
Layout.fillWidth: true
Layout.fillHeight: true
}
@@ -30,7 +36,7 @@ RowLayout {
spacing: 20
Repeater {
model: [terminalScreen.title, firmwareUpdateScreen.title]
model: [terminalScreen.title, firmwareUpdateScreen.title, networkSettingsScreen.title]
delegate: Controls.LinkLabel {
text: modelData
onClicked: stack.currentIndex = index
@@ -41,6 +47,7 @@ RowLayout {
Layout.fillHeight: true
}
Layout.preferredWidth: 180
Layout.minimumWidth: 180
Layout.maximumWidth: 180
}
}