lux-shell/widgets/StyledListView.qml
2025-08-01 23:21:29 -04:00

16 lines
297 B
QML

import QtQuick
ListView {
id: root
maximumFlickVelocity: 3000
rebound: Transition {
NumberAnimation {
properties: "x,y"
duration: 400
easing.type: Easing.BezierSpline
easing.bezierCurve: [0.2, 0, 0, 1, 1, 1]
}
}
}