ukui-menu/qml/AppUI/FullScreenUI.qml

34 lines
775 B
QML

import QtQuick 2.0
import QtQuick.Layouts 1.12
import AppControls2 1.0 as AppControls2
import org.ukui.menu.core 1.0
AppControls2.StyleBackground {
paletteRole: Palette.Dark
ColumnLayout {
anchors.fill: parent
anchors.leftMargin: 35
anchors.rightMargin: 35
FullScreenHeader {
// full screen header
Layout.preferredHeight: 130
Layout.fillWidth: true
Layout.maximumHeight: 130
}
FullScreenContent {
// full screen content
Layout.fillHeight: true
Layout.fillWidth: true
}
FullScreenFooter {
// full screen footer
Layout.preferredHeight: 90
Layout.fillWidth: true
}
}
}