aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/quick/qquicklistview/data/requiredObjectListModel.qml
blob: f6380ed5aac474c6cf27a8862396d74fb4bff9f7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
import QtQuick 2.0

ListView {
    width: 100
    height: 100
    required model

    delegate: Rectangle {
        required color
        required property string name

        height: 25
        width: 100
    }
}