blob: eea4b415f5b5221f6da8c4e2eb7113df5019dbb7 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
|
// Copyright (C) 2025 The Qt Company Ltd.
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR BSD-3-Clause
import QtQuick
import QtQuick.Controls
import QtQuick.Layouts
ApplicationWindow {
width: 640
height: 480
visible: true
title: qsTr("QML Flexbox Layout")
//! [layout-definition]
FlexboxLayout {
id: flexLayout
anchors.fill: parent
wrap: FlexboxLayout.Wrap
direction: FlexboxLayout.Row
justifyContent: FlexboxLayout.JustifySpaceAround
Rectangle {
color: 'teal'
implicitWidth: 200
implicitHeight: 200
}
Rectangle {
color: 'plum'
implicitWidth: 200
implicitHeight: 200
}
Rectangle {
color: 'olive'
implicitWidth: 200
implicitHeight: 200
}
Rectangle {
color: 'beige'
implicitWidth: 200
implicitHeight: 200
}
Rectangle {
color: 'darkseagreen'
implicitWidth: 200
implicitHeight: 200
}
}
//! [layout-definition]
}
|