mirror of
https://github.com/belsabbagh/dotfiles.git
synced 2026-04-11 01:26:46 +00:00
15 lines
175 B
QML
15 lines
175 B
QML
import ".."
|
|
import QtQuick
|
|
|
|
Flickable {
|
|
id: root
|
|
|
|
maximumFlickVelocity: 3000
|
|
|
|
rebound: Transition {
|
|
Anim {
|
|
properties: "x,y"
|
|
}
|
|
}
|
|
}
|