From e0fa4a52761b60c4b2288581aa92dd5ac1386bd4 Mon Sep 17 00:00:00 2001 From: Liam DeBeasi Date: Wed, 21 Aug 2019 10:09:40 -0400 Subject: [PATCH] chore(transition): update swipe back duration (#19148) --- core/src/utils/gesture/swipe-back.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/src/utils/gesture/swipe-back.ts b/core/src/utils/gesture/swipe-back.ts index 043be85537..5c7a96afd6 100644 --- a/core/src/utils/gesture/swipe-back.ts +++ b/core/src/utils/gesture/swipe-back.ts @@ -34,7 +34,7 @@ export const createSwipeBackGesture = ( let realDur = 0; if (missingDistance > 5) { const dur = missingDistance / Math.abs(velocity); - realDur = Math.min(dur, 300); + realDur = Math.min(dur, 540); } onEndHandler(shouldComplete, stepValue, realDur);