lsfg-vk/lsfg-vk-ui/rsc/panes/Group.qml
2025-12-25 04:32:22 +01:00

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
}
}