ESP32_upper/QML/pages/MainPage.qml
impressionyang 2fdeecfb0a style💄: 更新页面内容
feat: 添加其他页面,但是没有添加功能
file📦: 添加APP图标
2024-11-28 19:11:59 +08:00

48 lines
914 B
QML

import QtQuick 2.15
import QtQuick.Controls
import QtQuick.Layouts
import ESP32_upper 1.0
Item {
id: root
RowLayout {
spacing: 0
Rectangle {
id: id_left_panel
width: 80
height: Window.height
color: "#00FF00"
LeftMenu {
anchors.fill: parent
}
}
Rectangle {
width: Window.width - id_left_panel.width
height: Window.height
color: "#0000FF"
StackLayout{
id: id_layout_right_panel
currentIndex: 0
anchors.fill: parent
HomePage {
}
SerialPage {
}
CmdPage {
}
PlotPage {
}
OTAPage {
}
}
}
}
}