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

18 lines
267 B
QML

import QtQuick
import QtQuick.Window
import ESP32_upper 1.0
Window {
width: 1300
height: 750
visible: true
title: qsTr("Hello World")
minimumHeight: 600
minimumWidth: 800
// color: "green"
HomePage {
id: id_home_page
}
}