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

ListView {
    id: listView
    width: 400
    height: 400
    focus: true
    model: 3

    delegate: Text {
        width: listView.width
        height: 10
        property int idx: index
        text: index
    }
}