mirror of
https://github.com/PancakeTAS/lsfg-vk.git
synced 2026-04-25 20:02:13 +00:00
32 lines
641 B
QML
32 lines
641 B
QML
import QtQuick
|
|
import QtQuick.Controls
|
|
import QtQuick.Layouts
|
|
|
|
GroupBox {
|
|
property string name
|
|
default property alias content: inner.children
|
|
|
|
Layout.fillWidth: true
|
|
id: root
|
|
topPadding: label.implicitHeight + 8
|
|
label: Label {
|
|
text: root.name
|
|
anchors.horizontalCenter: parent.horizontalCenter
|
|
|
|
anchors.top: parent.top
|
|
anchors.topMargin: 4
|
|
padding: 4
|
|
}
|
|
background: Rectangle {
|
|
color: palette.alternateBase
|
|
border.color: palette.light
|
|
radius: 4
|
|
}
|
|
|
|
ColumnLayout {
|
|
id: inner
|
|
|
|
anchors.fill: parent
|
|
spacing: 12
|
|
}
|
|
}
|