aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/quick/qquicklistview/data/releaseItems.qml
blob: de774e5e08ef113c25826c0020f619f326ac1c8d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
import QtQuick 2.0

ListView {
    width: 400
    height: 400
    model: 100
    delegate: Rectangle {
        height: 40; width: 400
        color: index % 2 ? "lightsteelblue" : "lightgray"
    }
    contentHeight: contentItem.children.length * 40
}