ukui-menu/qml/AppUI/FullScreenUI.qml

29 lines
649 B
QML

import QtQuick 2.0
import QtQuick.Layouts 1.12
Item {
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
}
}
}