aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/declarative/qsgvisualdatamodel/data/singlerole1.qml
blob: d5b0fcf09b8257b282b38f92fb9f493a3b7f0f01 (plain)
1
2
3
4
5
6
7
8
9
10
import QtQuick 2.0

ListView {
    width: 100
    height: 100
    model: myModel
    delegate: Component {
        Text { objectName: "name"; text: name }
    }
}