aboutsummaryrefslogtreecommitdiffstats
path: root/tests/manual/touch/basic-flickable.qml
diff options
context:
space:
mode:
Diffstat (limited to 'tests/manual/touch/basic-flickable.qml')
-rw-r--r--tests/manual/touch/basic-flickable.qml33
1 files changed, 33 insertions, 0 deletions
diff --git a/tests/manual/touch/basic-flickable.qml b/tests/manual/touch/basic-flickable.qml
new file mode 100644
index 0000000000..c3ccfeb46c
--- /dev/null
+++ b/tests/manual/touch/basic-flickable.qml
@@ -0,0 +1,33 @@
+// Copyright (C) 2017 The Qt Company Ltd.
+// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only
+
+import QtQuick
+
+ //![0]
+Rectangle {
+ width: 320
+ height: 480
+ Flickable {
+ anchors.fill: parent
+ contentWidth: 1200
+ contentHeight: 1200
+ Rectangle {
+ width: 1000
+ height: 1000
+ //![0]
+ x: 100
+ y: 100
+ radius: 128
+ border.width: 4
+ border.color: "black"
+ gradient: Gradient {
+ GradientStop { position: 0.0; color: "#000000" }
+ GradientStop { position: 0.2; color: "#888888" }
+ GradientStop { position: 0.4; color: "#FFFFFF" }
+ GradientStop { position: 0.6; color: "#FFFFFF" }
+ GradientStop { position: 0.8; color: "#888888" }
+ GradientStop { position: 1.0; color: "#000000" }
+ }
+ }
+ }
+}