aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/quick/qquicklistview/data/snapToItemWithSpacing.qml
blob: 50b5abb206d997d8424936ee2e3fdf43992ba6ec (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
import QtQuick 2.0

ListView {
    width: 100
    height: 300
    snapMode: ListView.SnapToItem
    spacing: 100
    model: 10
    delegate: Rectangle {
        height: 100
        width: 100
        color: "blue"
        Text {
            anchors.centerIn: parent
            text: index
        }
    }
}