lux-shell/components/StyledListView.qml
2025-09-04 13:20:36 -04:00

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]
}
}
}