ukui-menu/qml/AppUI/NormalUI.qml

23 lines
443 B
QML

import QtQuick 2.12
import QtQuick.Controls 2.0 as QQC2
import AppControls2 1.0 as AppControls2
import org.ukui.menu.core 1.0
AppControls2.StyleBackground {
paletteRole: Palette.Window
radius: 12
Row {
anchors.fill: parent;
AppPage {
width: 300
height: parent.height;
}
Sidebar {
width: parent.width - 300;
height: parent.height;
}
}
}