aboutsummaryrefslogtreecommitdiffstats
path: root/examples/quick/touchinteraction/flickable/corkboards.qml
diff options
context:
space:
mode:
Diffstat (limited to 'examples/quick/touchinteraction/flickable/corkboards.qml')
-rw-r--r--examples/quick/touchinteraction/flickable/corkboards.qml51
1 files changed, 0 insertions, 51 deletions
diff --git a/examples/quick/touchinteraction/flickable/corkboards.qml b/examples/quick/touchinteraction/flickable/corkboards.qml
deleted file mode 100644
index a8b9032dfd..0000000000
--- a/examples/quick/touchinteraction/flickable/corkboards.qml
+++ /dev/null
@@ -1,51 +0,0 @@
-// Copyright (C) 2017 The Qt Company Ltd.
-// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR BSD-3-Clause
-
-import QtQuick
-
-Rectangle {
- width: 320; height: 480
- color: "#464646"
-
- ListModel {
- id: list
-
- ListElement {
- name: "Panel One"
- notes: [
- ListElement { noteText: "Tap to edit" },
- ListElement { noteText: "Drag to move" },
- ListElement { noteText: "Flick to scroll" }
- ]
- }
-
- ListElement {
- name: "Panel Two"
- notes: [
- ListElement { noteText: "Note One" },
- ListElement { noteText: "Note Two" }
- ]
- }
-
- ListElement {
- name: "Panel Three"
- notes: [
- ListElement { noteText: "Note Three" }
- ]
- }
- }
-
- ListView {
- id: flickable
-
- anchors.fill: parent
- focus: true
- highlightRangeMode: ListView.StrictlyEnforceRange
- orientation: ListView.Horizontal
- snapMode: ListView.SnapOneItem
- model: list
- delegate: Panel {
- horizontalVelocity: flickable.horizontalVelocity
- }
- }
-}