ukui-menu/qml/AppUI/NormalUI.qml

21 lines
372 B
QML
Raw Normal View History

2022-12-23 11:32:21 +08:00
import QtQuick 2.12
import QtQuick.Controls 2.0 as QQC2
2023-02-09 16:07:51 +08:00
import AppControls2 1.0 as AppControls2
import org.ukui.menu.core 1.0
2022-12-23 11:32:21 +08:00
2023-03-20 15:33:32 +08:00
Item {
2022-12-23 11:32:21 +08:00
Row {
anchors.fill: parent;
AppPage {
width: 300
height: parent.height;
}
Sidebar {
width: parent.width - 300;
height: parent.height;
}
2022-12-23 11:32:21 +08:00
}
}