mirror of
https://github.com/PancakeTAS/lsfg-vk.git
synced 2026-04-26 12:21:43 +00:00
16 lines
263 B
QML
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
|
|
}
|
|
}
|