forked from Shinonome/dots-hyprland
23 lines
461 B
QML
23 lines
461 B
QML
import QtQuick
|
|
import QtQuick.Controls
|
|
import QtQuick.Layouts
|
|
import "root:/modules/common/"
|
|
import "root:/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
|
|
}
|
|
ColumnLayout {
|
|
id: sectionContent
|
|
spacing: 4
|
|
}
|
|
}
|