aboutsummaryrefslogtreecommitdiffstats
path: root/src/quick/doc/snippets
diff options
context:
space:
mode:
Diffstat (limited to 'src/quick/doc/snippets')
-rw-r--r--src/quick/doc/snippets/qml/listview/hideDelegate.qml27
1 files changed, 27 insertions, 0 deletions
diff --git a/src/quick/doc/snippets/qml/listview/hideDelegate.qml b/src/quick/doc/snippets/qml/listview/hideDelegate.qml
new file mode 100644
index 0000000000..7c019a2c92
--- /dev/null
+++ b/src/quick/doc/snippets/qml/listview/hideDelegate.qml
@@ -0,0 +1,27 @@
+// Copyright (C) 2024 The Qt Company Ltd.
+// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR BSD-3-Clause
+
+import QtQuick
+import QtQuick.Controls.Basic
+
+//! [ListView]
+ListView {
+ anchors.fill: parent
+ model: ListModel {
+ ListElement { hidden: false }
+ ListElement { hidden: false }
+ ListElement { hidden: false }
+ // ...
+ }
+ delegate: ItemDelegate {
+ text: qsTr("Item %1").arg(index)
+ visible: !model.hidden
+ height: visible ? implicitHeight : 0
+
+ required property int index
+ required property var model
+
+ onClicked: model.hidden = true
+ }
+}
+//! [ListView]