blob: 931e7b9949084a3125bab10d37b8c668c0a4148d [file] [log] [blame]
import QtQuick 2.0
Rectangle {
id: root
width: 240
height: 240
property real initialHeight
ListView {
id: list
objectName: "list"
width: 240
cacheBuffer: 0
height: initialHeight
model: testModel
delegate: Rectangle {
objectName: "wrapper"
width: 240
height: 20
border.width: 1
}
}
}