23 lines
825 B
QML
23 lines
825 B
QML
// Copyright (C) 2021 The Qt Company Ltd.
|
|
|
|
import QtQuick
|
|
import QtQuick.Controls.impl
|
|
import QtQuick.Templates as T
|
|
|
|
T.Page {
|
|
id: control
|
|
|
|
implicitWidth: Math.max(implicitBackgroundWidth + leftInset + rightInset,
|
|
implicitContentWidth + leftPadding + rightPadding,
|
|
implicitHeaderWidth,
|
|
implicitFooterWidth)
|
|
implicitHeight: Math.max(implicitBackgroundHeight + topInset + bottomInset,
|
|
implicitContentHeight + topPadding + bottomPadding
|
|
+ (implicitHeaderHeight > 0 ? implicitHeaderHeight + spacing : 0)
|
|
+ (implicitFooterHeight > 0 ? implicitFooterHeight + spacing : 0))
|
|
|
|
background: Rectangle {
|
|
color: control.palette.window
|
|
}
|
|
}
|