QML
Learn the basics of QML
Item
import QtQuick 2.0
Item {
id: widget
Item {
id: childItemA
}
Item {
id: childItemB
}
}Rectangle

Items are 0px wide by default

anchors.fill

anchors.bottom

ColumnLayout

Layout.fillWidth: true

Layout.fillHeight: true

Spacing between items in a Layout

Other Layouts

Last updated