blob: e7ef7d357a1aab0da71a3597bf1273756085dc04 (
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
|
// Copyright (C) 2020 The Qt Company Ltd.
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only
import QtQuick
import QtQuick.Controls
Column {
id: group
width: parent.width
property bool frame: true
leftPadding: 10
rightPadding: 5
topPadding: 5
bottomPadding: 5
Item {
visible: frame
Rectangle {
width: group.width
height: group.height
color: "#f1f1f0"
border.color: "darkgray"
border.width: 2
}
}
}
|