aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/quick/qquicklistview2/data/urlListModel.qml
blob: 94d5c37a564c3d88423dc3a101532f8971c2cecc (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
// Copyright (C) 2021 The Qt Company Ltd.
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR BSD-3-Clause

import QtQuick

Rectangle {
    id: root

    property var model
    property alias view: view

    ListView {
        id: view
        anchors.fill: parent
        objectName: "view"
        model: root.model
        delegate: Text {
            height: view.width
            text: modelData
        }
    }
}