mirror of
https://github.com/johndoe6345789/metabuilder.git
synced 2026-04-30 08:44:57 +00:00
18 lines
313 B
QML
18 lines
313 B
QML
import QtQuick 2.15
|
|
import QtQuick.Layouts 1.15
|
|
|
|
Rectangle {
|
|
id: box
|
|
property alias content: layout.data
|
|
color: "transparent"
|
|
radius: 10
|
|
border.width: 0
|
|
|
|
ColumnLayout {
|
|
id: layout
|
|
anchors.fill: parent
|
|
anchors.margins: 8
|
|
spacing: 10
|
|
}
|
|
}
|