aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/quick/qquicklistview2/data/maxXExtent.qml
blob: b9e88cfc9e58102197b2e92b071243f4530165ec (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
// Copyright (C) 2022 The Qt Company Ltd.
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only WITH Qt-GPL-exception-1.0

import QtQuick

Item {
    property alias view: view

    ListView {
        id: view
        model: 10
        width: 200
        height: 200

        Rectangle {
            anchors.fill: parent
            color: "transparent"
            border.color: "darkorange"
        }

        delegate: Rectangle {
            width: 100
            height: 100
            Text {
                text: modelData
            }
        }
    }
}