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

16 lines
263 B
QML

import QtQuick
import QtQuick.Layouts
Rectangle {
default property alias content: inner.children
id: root
color: "transparent"
ColumnLayout {
id: inner
anchors.fill: parent
anchors.margins: 12
spacing: 4
}
}