aboutsummaryrefslogtreecommitdiffstats
path: root/src/quick/doc/snippets/layouts/responsiveStates.qml
diff options
context:
space:
mode:
Diffstat (limited to 'src/quick/doc/snippets/layouts/responsiveStates.qml')
-rw-r--r--src/quick/doc/snippets/layouts/responsiveStates.qml44
1 files changed, 44 insertions, 0 deletions
diff --git a/src/quick/doc/snippets/layouts/responsiveStates.qml b/src/quick/doc/snippets/layouts/responsiveStates.qml
new file mode 100644
index 0000000000..5506407230
--- /dev/null
+++ b/src/quick/doc/snippets/layouts/responsiveStates.qml
@@ -0,0 +1,44 @@
+// Copyright (C) 2023 The Qt Company Ltd.
+// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR BSD-3-Clause
+
+import QtQuick
+import QtQuick.Layouts
+import QtQuick.Window
+
+Window {
+ visible: true
+ width: 350
+ height: 250
+ //! [document]
+ GridLayout {
+ anchors.fill: parent
+
+ Rectangle {
+ id: rectangle1
+ color: "tomato"
+ Layout.fillHeight: true
+ Layout.fillWidth: true
+ }
+
+ Rectangle {
+ id: rectangle2
+ color: "lightskyblue"
+ Layout.fillHeight: true
+ Layout.fillWidth: true
+ }
+
+ states: [
+ State {
+ when: width < 300
+ PropertyChanges { target: rectangle2; Layout.row: 1 }
+ PropertyChanges { target: rectangle2; Layout.column: 0 }
+ },
+ State {
+ when: width >= 300
+ PropertyChanges { target: rectangle2; Layout.row: 0 }
+ PropertyChanges { target: rectangle2; Layout.column: 1 }
+ }
+ ]
+ }
+ //! [document]
+}