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

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

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