aboutsummaryrefslogtreecommitdiffstats
path: root/src/qml/doc/snippets/qml/component/main.qml
blob: b9bf933362de3f41e768b87eb4f7f9f779fe919d (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 2.0

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

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