aboutsummaryrefslogtreecommitdiffstats
path: root/src/qml/doc/snippets/qml/qml-documents/inline-component.qml
blob: 72e7487e73d62702c93152b5d0350b013c3c3d71 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
// Copyright (C) 2017 The Qt Company Ltd.
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR BSD-3-Clause

//! [document]
import QtQuick 2.0

Rectangle {
    width: 240; height: 320;

    ListView {
        anchors.fill: parent
        model: contactModel
        delegate: Component {
            Text {
                text: modelData.firstName + " " + modelData.lastName
            }
        }
    }
}
//! [document]