diff options
Diffstat (limited to 'src')
| -rw-r--r-- | src/controls/Private/StackViewSlideDelegate.qml | 12 |
1 files changed, 8 insertions, 4 deletions
diff --git a/src/controls/Private/StackViewSlideDelegate.qml b/src/controls/Private/StackViewSlideDelegate.qml index dbacbffa6..632551fc6 100644 --- a/src/controls/Private/StackViewSlideDelegate.qml +++ b/src/controls/Private/StackViewSlideDelegate.qml @@ -69,14 +69,16 @@ StackViewDelegate { property: "x" from: target.width to: 0 - duration: 300 + duration: 400 + easing.type: Easing.OutCubic } PropertyAnimation { target: exitItem property: "x" from: 0 to: -target.width - duration: 300 + duration: 400 + easing.type: Easing.OutCubic } } @@ -86,14 +88,16 @@ StackViewDelegate { property: "x" from: -target.width to: 0 - duration: 300 + duration: 400 + easing.type: Easing.OutCubic } PropertyAnimation { target: exitItem property: "x" from: 0 to: target.width - duration: 300 + duration: 400 + easing.type: Easing.OutCubic } } property Component replaceTransition: pushTransition |
