blob: f5b7b35d0cc61d9260d42a344332ae393cb2814d [file] [log] [blame]
import QtQuick 2.0
ListView {
width: 400
height: 400
focus: true
model: 10
delegate: Rectangle {
width: parent.width
height: 50
color: index % 2 ? "blue" : "green"
}
snapMode: ListView.SnapOneItem
Keys.onUpPressed: flick(0,500)
Keys.onDownPressed: flick(0,-500)
}