aboutsummaryrefslogtreecommitdiffstats
path: root/src/quick/doc/snippets/qml/loader/creationContext3.qml
blob: e9d47f1e1829751f7bb810bdfb5c0ea21fcd1edb (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) 2016 The Qt Company Ltd.
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR BSD-3-Clause

import QtQuick

Item {
    width: 400
    height: 400

    ListView {
        anchors.fill: parent
        model: 5
//![0]
        delegate: Component {
            Loader {
                source: "MyComponent.qml" //okay
            }
        }
//![0]
    }
}