Files
LR-EnviroCommand/app/main.qml
T
dragonfly2046 9842c1579b
Gitea Actions Demo / Explore-Gitea-Actions (push) Successful in 4s
Add dummy ui
2026-05-02 08:45:02 -07:00

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 { }
}
}
}