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

ListView {
    id: view
    width: 200; height: 400

    snapMode: ListView.SnapToItem

    model: 10
    delegate: Rectangle {
        width: 200; height: 50
        color: index % 2 ? "red" : "green"
    }
}