22 lines
448 B
QML
22 lines
448 B
QML
import QtQuick
|
|
import QtQuick.Controls
|
|
|
|
ListView {
|
|
id: root
|
|
|
|
clip: true
|
|
maximumFlickVelocity: 3000
|
|
|
|
ScrollBar {
|
|
orientation: root.orientation == ListView.Vertical ? Qt.Vertical : Qt.Horizontal
|
|
}
|
|
|
|
rebound: Transition {
|
|
NumberAnimation {
|
|
properties: "x,y"
|
|
duration: 400
|
|
easing.type: Easing.BezierSpline
|
|
easing.bezierCurve: [0.2, 0, 0, 1, 1, 1]
|
|
}
|
|
}
|
|
}
|