ukui-menu/qml/AppUI/FullScreenUI.qml

34 lines
775 B
QML
Raw Normal View History

2022-12-23 11:32:21 +08:00
import QtQuick 2.0
2023-03-17 17:25:50 +08:00
import QtQuick.Layouts 1.12
2023-03-20 15:33:32 +08:00
import AppControls2 1.0 as AppControls2
import org.ukui.menu.core 1.0
AppControls2.StyleBackground {
paletteRole: Palette.Dark
2023-03-17 17:25:50 +08:00
ColumnLayout {
2022-12-23 11:32:21 +08:00
anchors.fill: parent
2023-03-17 17:25:50 +08:00
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
}
2022-12-23 11:32:21 +08:00
2023-03-17 17:25:50 +08:00
FullScreenFooter {
// full screen footer
Layout.preferredHeight: 90
Layout.fillWidth: true
2022-12-23 11:32:21 +08:00
}
}
}