diff --git a/src/components/ReanimatedSwipeable.tsx b/src/components/ReanimatedSwipeable.tsx index f0b61b770d..f03253847b 100644 --- a/src/components/ReanimatedSwipeable.tsx +++ b/src/components/ReanimatedSwipeable.tsx @@ -231,7 +231,7 @@ const Swipeable = forwardRef( const rowWidth = useSharedValue(0); const leftWidth = useSharedValue(0); const rightWidth = useSharedValue(0); - const rightOffset = useSharedValue(0); + const rightOffset = useSharedValue(null); const leftActionTranslate = useSharedValue(0); const rightActionTranslate = useSharedValue(0); @@ -267,19 +267,29 @@ const Swipeable = forwardRef( const overshootLeftProp = overshootLeft; const overshootRightProp = overshootRight; + const updateRightElementWidth = () => { + 'worklet'; + if (rightOffset.value === null) { + rightOffset.value = rowWidth.value; + } + rightWidth.value = Math.max(0, rowWidth.value - rightOffset.value); + }; + const calculateCurrentOffset = useCallback(() => { 'worklet'; + updateRightElementWidth(); if (rowState.value === 1) { return leftWidth.value; } else if (rowState.value === -1) { - return -rowWidth.value - rightOffset.value; + return -rowWidth.value - rightOffset.value!; } return 0; }, [leftWidth, rightOffset, rowState, rowWidth]); const updateAnimatedEvent = () => { 'worklet'; - rightWidth.value = Math.max(0, rowWidth.value - rightOffset.value); + + updateRightElementWidth(); const overshootLeft = overshootLeftProp ?? leftWidth.value > 0; const overshootRight = overshootRightProp ?? rightWidth.value > 0; @@ -447,7 +457,6 @@ const Swipeable = forwardRef( }, openRight() { 'worklet'; - rightWidth.value = rowWidth.value - rightOffset.value; animateRow(calculateCurrentOffset(), -rightWidth.value); }, reset() { @@ -521,7 +530,7 @@ const Swipeable = forwardRef( const { velocityX } = event; userDrag.value = event.translationX; - rightWidth.value = rowWidth.value - rightOffset.value; + updateRightElementWidth(); const leftThreshold = leftThresholdProp ?? leftWidth.value / 2; const rightThreshold = rightThresholdProp ?? rightWidth.value / 2;