ESP32_upper/QML/pages/HomePage.qml
impressionyang 8ef0a05b73 file📦: 添加SVG图标文件
style💄: 更新左边菜单样式
2024-11-28 17:02:42 +08:00

31 lines
525 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"
}
}
}