C

Qt Quick Ultralite Layouts QML Types

The Qt Quick Ultralite Layouts module provides Qt Quick Layouts compatible QML types for arranging items in a user interface.

To use the Qt Quick Ultralite Layouts QML types, add Layouts to the list of module files in your qmlproject-based project.

ModuleFiles {
    MCU.qulModules: ["Layouts"]
}

And add the following import statement to your .qml file:

import QtQuick.Layouts

QML Types

ColumnLayout

Identical to GridLayout, but having only one column

GridLayout

Provides a way of dynamically arranging items in a grid

Layout

Provides attached properties for items pushed onto a GridLayout, RowLayout or ColumnLayout

RowLayout

Identical to GridLayout, but having only one row

Available under certain Qt licenses.
Find out more.