aboutsummaryrefslogtreecommitdiffstats
path: root/tests/baseline/controls/data/shared/FlowPane.qml
blob: b26e65f2ae47b60adebdbb4a591f6f0fcf109c00 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
import QtQuick
import QtQuick.Controls

Pane {
    width: Math.min(implicitWidth, 800)
    height: Math.min(implicitHeight, 800)

    default property alias content: flow.children

    Flow {
        id: flow
        anchors.fill: parent
        spacing: 5
    }
}