overte/scripts/system/settings/qml/SettingCenterContainer.qml
armored-dragon 01ff90a7f2
Renamed /qml_widgets folder to /qml.
Signed-off-by: armored-dragon <publicmail@armoreddragon.com>
2025-04-12 18:57:33 -05:00

23 lines
480 B
QML

import QtQuick 2.15
import QtQuick.Controls 2.15
import QtQuick.Layouts 1.3
ScrollView {
width: parent.width
height: parent.height
y: header.height
id: root
ColumnLayout {
width: parent.width
anchors.horizontalCenter: parent.horizontalCenter
spacing: 0
}
// Append children made using this custom element to the ColumnLayout.
Component.onCompleted: {
while (root.contentChildren.length > 1){
root.contentChildren[2].parent = root.contentChildren[0]
}
}
}