2022-05-13 13:12:05 +00:00
|
|
|
// Copyright (C) 2017 The Qt Company Ltd.
|
|
|
|
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR BSD-3-Clause
|
2011-04-27 10:05:43 +00:00
|
|
|
|
2022-08-31 07:59:05 +00:00
|
|
|
import QtQuick
|
2011-04-27 10:05:43 +00:00
|
|
|
//![0]
|
|
|
|
|
|
|
|
ListView {
|
2019-09-17 16:10:59 +00:00
|
|
|
width: 100
|
|
|
|
height: 100
|
|
|
|
required model
|
2011-04-27 10:05:43 +00:00
|
|
|
|
|
|
|
delegate: Rectangle {
|
2019-09-17 16:10:59 +00:00
|
|
|
required property string modelData
|
2011-04-27 10:05:43 +00:00
|
|
|
height: 25
|
|
|
|
width: 100
|
2019-09-17 16:10:59 +00:00
|
|
|
Text { text: parent.modelData }
|
2011-04-27 10:05:43 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
//![0]
|