41 lines
912 B
QML
41 lines
912 B
QML
import QtQuick
|
|
import QtQuick.Controls
|
|
import QtQuick.Layouts
|
|
import ProjectViews
|
|
|
|
ApplicationWindow {
|
|
id: app
|
|
width: 1280
|
|
height: 720
|
|
visible: true
|
|
title: "LR-EnviroCommand"
|
|
|
|
RowLayout {
|
|
anchors.fill: parent
|
|
|
|
Rectangle {
|
|
width: 220
|
|
Layout.fillHeight: true
|
|
|
|
Column {
|
|
anchors.fill: parent
|
|
anchors.margins: 20
|
|
spacing: 16
|
|
|
|
Button { text: "Dashboard" }
|
|
Button { text: "Telemetry" }
|
|
Button { text: "Logs" }
|
|
Button { text: "Firmware" }
|
|
Button { text: "Remote Commands" }
|
|
Button { text: "Settings" }
|
|
}
|
|
}
|
|
|
|
StackView {
|
|
id: stackView
|
|
Layout.fillWidth: true
|
|
Layout.fillHeight: true
|
|
initialItem: Dashboard { }
|
|
}
|
|
}
|
|
} |