aboutsummaryrefslogtreecommitdiffstats
path: root/src/qml/doc/snippets/qml/component/main.qml
blob: a76471dce211509a17b0787c5ba5e77791d9b9cd (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
// Copyright (C) 2017 The Qt Company Ltd.
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR BSD-3-Clause

import QtQuick

//![0]
ListView {
    width: 400; height: 400
    model: 5
    delegate: myItem.mycomponent    //will create green Rectangles

    MyItem { id: myItem }
}
//![0]