2019-07-13 19:39:01 +10:00
|
|
|
import QtQuick 2.12
|
2019-07-07 07:42:04 +10:00
|
|
|
|
|
|
|
NumberAnimation {
|
2019-08-18 03:01:43 +10:00
|
|
|
property real factor: Math.max(overshoot / 1.75, 1.0)
|
|
|
|
property real overshoot: 1.0
|
|
|
|
|
2019-07-18 15:53:28 +10:00
|
|
|
duration: theme.animationDuration * factor
|
2019-08-18 03:01:43 +10:00
|
|
|
easing.type: overshoot > 1 ? Easing.InOutBack : Easing.Linear
|
|
|
|
easing.overshoot: overshoot
|
2019-07-07 07:42:04 +10:00
|
|
|
}
|