diff options
Diffstat (limited to 'mobile-widgets/qml/DiveDetails.qml')
-rw-r--r-- | mobile-widgets/qml/DiveDetails.qml | 32 |
1 files changed, 21 insertions, 11 deletions
diff --git a/mobile-widgets/qml/DiveDetails.qml b/mobile-widgets/qml/DiveDetails.qml index b1357ef55..aa344817b 100644 --- a/mobile-widgets/qml/DiveDetails.qml +++ b/mobile-widgets/qml/DiveDetails.qml @@ -84,19 +84,29 @@ Kirigami.Page { Transition { from: "view" to: "*" - SequentialAnimation { - NumberAnimation { - target: detailsEditFlickable - properties: "visible" - from: 0 - to: 1 - duration: 10 + ParallelAnimation { + SequentialAnimation { + NumberAnimation { + target: detailsEditFlickable + properties: "visible" + from: 0 + to: 1 + duration: 10 + } + ScaleAnimator { + target: detailsEditFlickable + from: 0.3 + to: 1 + duration: 400 + easing.type: Easing.InOutQuad + } } - ScaleAnimator { + + NumberAnimation { target: detailsEditFlickable - from: 0.3 - to: 1 - duration: 400 + property: "contentY" + to: 0 + duration: 200 easing.type: Easing.InOutQuad } } |