aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/declarative/qquickpositioners/data/flow-testimplicitsize.qml
diff options
context:
space:
mode:
Diffstat (limited to 'tests/auto/declarative/qquickpositioners/data/flow-testimplicitsize.qml')
-rw-r--r--tests/auto/declarative/qquickpositioners/data/flow-testimplicitsize.qml19
1 files changed, 19 insertions, 0 deletions
diff --git a/tests/auto/declarative/qquickpositioners/data/flow-testimplicitsize.qml b/tests/auto/declarative/qquickpositioners/data/flow-testimplicitsize.qml
new file mode 100644
index 0000000000..c32b78676c
--- /dev/null
+++ b/tests/auto/declarative/qquickpositioners/data/flow-testimplicitsize.qml
@@ -0,0 +1,19 @@
+import QtQuick 2.0
+
+Rectangle {
+ width: 300; height: 200;
+
+ property int flowLayout: 1
+
+ Flow {
+ objectName: "flow"
+ layoutDirection: (flowLayout == 2) ? Qt.RightToLeft : Qt.LeftToRight
+ flow: (flowLayout == 1) ? Flow.TopToBottom : Flow.LeftToRight;
+
+ spacing: 20
+ anchors.horizontalCenter: parent.horizontalCenter
+ Rectangle { color: "red"; width: 100; height: 50 }
+ Rectangle { color: "blue"; width: 100; height: 50 }
+ }
+}
+