2022-05-13 13:12:05 +00:00
|
|
|
// Copyright (C) 2022 The Qt Company Ltd.
|
2024-02-22 14:51:16 +00:00
|
|
|
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only
|
2022-05-06 14:31:37 +00:00
|
|
|
|
|
|
|
import QtQuick
|
|
|
|
|
|
|
|
Item {
|
|
|
|
width: 300
|
|
|
|
height: 300
|
|
|
|
|
|
|
|
Flickable {
|
|
|
|
id: flickable
|
|
|
|
anchors.fill: parent
|
|
|
|
contentHeight: column.height
|
|
|
|
|
|
|
|
Column {
|
|
|
|
id: column
|
|
|
|
width: parent.width
|
|
|
|
|
|
|
|
Repeater {
|
|
|
|
model: 255
|
|
|
|
|
|
|
|
delegate: Rectangle {
|
|
|
|
width: column.width
|
|
|
|
height: 50
|
|
|
|
color: flickable.dragging ? "steelblue" : "gray"
|
|
|
|
Text {
|
|
|
|
anchors.centerIn: parent
|
|
|
|
text: index
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
PinchHandler {
|
|
|
|
target: flickable
|
|
|
|
}
|
|
|
|
}
|