diff --git a/src/Core/src/Platform/iOS/MauiSwipeView.cs b/src/Core/src/Platform/iOS/MauiSwipeView.cs index af34f261417a..a92d6bd4ae6a 100644 --- a/src/Core/src/Platform/iOS/MauiSwipeView.cs +++ b/src/Core/src/Platform/iOS/MauiSwipeView.cs @@ -517,7 +517,7 @@ void IsParentScrollEnabled(bool scrollEnabled) { var swipeThresholdPercent = MinimumOpenSwipeThresholdPercentage * GetSwipeThreshold(); - if (Math.Abs(_swipeOffset) < swipeThresholdPercent) + if (!scrollEnabled && Math.Abs(_swipeOffset) < swipeThresholdPercent) return; if (scrollEnabled == _isScrollEnabled)