ukui-menu/qml/AppUI/FullScreenUI.qml

29 lines
649 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
2022-12-23 11:32:21 +08:00
Item {
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
}
}
}