aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/quick/qquicklistview2/data/urlListModel.qml
blob: 38237234e0b1b94c72993542e5fda2ad939b22a9 (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 GPL-3.0-only

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
        }
    }
}