@@ -13,39 +13,35 @@ StackView {
13
13
property: vertical ? " y" : " x"
14
14
from: vertical ? parent .height : parent .width
15
15
to: 0
16
- duration: 400
17
- easing .type : Easing .Bezier
18
- easing .bezierCurve : [0.5 , 0.0 , 0.2 , 1.0 ]
16
+ duration: 500
17
+ easing .type : Easing .InOutCubic
19
18
}
20
19
}
21
20
pushExit: Transition {
22
21
NumberAnimation {
23
22
property: vertical ? " y" : " x"
24
23
from: 0
25
24
to: vertical ? - parent .height : - parent .width
26
- duration: 400
27
- easing .type : Easing .Bezier
28
- easing .bezierCurve : [0.5 , 0.0 , 0.2 , 1.0 ]
25
+ duration: 500
26
+ easing .type : Easing .InOutCubic
29
27
}
30
28
}
31
29
popEnter: Transition {
32
30
NumberAnimation {
33
31
property: vertical ? " y" : " x"
34
32
from: vertical ? - parent .height : - parent .width
35
33
to: 0
36
- duration: 400
37
- easing .type : Easing .Bezier
38
- easing .bezierCurve : [0.5 , 0.0 , 0.2 , 1.0 ]
34
+ duration: 500
35
+ easing .type : Easing .InOutCubic
39
36
}
40
37
}
41
38
popExit: Transition {
42
39
NumberAnimation {
43
40
property: vertical ? " y" : " x"
44
41
from: 0
45
42
to: vertical ? parent .height : parent .width
46
- duration: 400
47
- easing .type : Easing .Bezier
48
- easing .bezierCurve : [0.5 , 0.0 , 0.2 , 1.0 ]
43
+ duration: 500
44
+ easing .type : Easing .InOutCubic
49
45
}
50
46
}
51
47
}
0 commit comments