blob: 7b0620706ecb881e83e1eb32a900251a15bc6e8a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
|
// Copyright (C) 2024 The Qt Company Ltd.
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR BSD-3-Clause
import QtQuick
Window {
flags: Qt.ExpandedClientAreaHint | Qt.NoTitleBarBackgroundHint
visible: true
//![0]
Rectangle {
id: parentItem
gradient: Gradient.SunnyMorning
anchors.fill: parent
Rectangle {
id: childItem
gradient: Gradient.DustyGrass
anchors {
fill: parent
topMargin: parent.SafeArea.margins.top
leftMargin: parent.SafeArea.margins.left
rightMargin: parent.SafeArea.margins.right
bottomMargin: parent.SafeArea.margins.bottom
}
}
}
//![0]
}
|