blob: fba8b11933df913e64e0cb64129c0d19402f9caf [file] [log] [blame]
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
}
}