mirror of
https://github.com/celesrenata/end-4-flakes.git
synced 2026-06-06 10:49:26 -05:00
24 lines
482 B
QML
24 lines
482 B
QML
import QtQuick
|
|
import QtQuick.Controls
|
|
import QtQuick.Layouts
|
|
import qs.modules.common
|
|
import qs.modules.common.widgets
|
|
|
|
ColumnLayout {
|
|
id: root
|
|
property string title
|
|
default property alias data: sectionContent.data
|
|
|
|
Layout.fillWidth: true
|
|
spacing: 8
|
|
StyledText {
|
|
text: root.title
|
|
font.pixelSize: Appearance.font.pixelSize.larger
|
|
font.weight: Font.Medium
|
|
}
|
|
ColumnLayout {
|
|
id: sectionContent
|
|
spacing: 8
|
|
}
|
|
}
|