Fluid
Loading...
Searching...
No Matches
ColumnFlow Class Reference

Automatically position children in columns. More...

Inheritance diagram for ColumnFlow:
Inheritance graph
[legend]
Collaboration diagram for ColumnFlow:
Collaboration graph
[legend]

Detailed Description

Automatically position children in columns.

import QtQuick
import Fluid as Fluid
Item {
width: 600
height: 600
Fluid.ColumnFlow {
anchors.fill: parent
columns: 5
model: 20
delegate: Rectangle {
id: item
height: 100.0 * Math.random()
color: Qt.rgba(Math.random(), Math.random(), Math.random(), Math.random())
Text {
text: index
}
}
}
}

The documentation for this class was generated from the following file: