Skip to content

Commit e0fa4a5

Browse files
authored
chore(transition): update swipe back duration (ionic-team#19148)
1 parent 3b51f8f commit e0fa4a5

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

core/src/utils/gesture/swipe-back.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ export const createSwipeBackGesture = (
3434
let realDur = 0;
3535
if (missingDistance > 5) {
3636
const dur = missingDistance / Math.abs(velocity);
37-
realDur = Math.min(dur, 300);
37+
realDur = Math.min(dur, 540);
3838
}
3939

4040
onEndHandler(shouldComplete, stepValue, realDur);

0 commit comments

Comments
 (0)