blob: 63d0c1c36dae90f3df56a81b95498b7ac2fb8c0d (
plain)
1
2
3
4
5
6
7
8
9
|
import QtQuick
import qs.Common
// Reusable NumberAnimation wrapper
NumberAnimation {
duration: Theme.expressiveDurations.normal
easing.type: Easing.BezierSpline
easing.bezierCurve: Theme.expressiveCurves.standard
}
|