We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7eea7e7 commit 69e8907Copy full SHA for 69e8907
src/Core/src/Platform/iOS/MauiSwipeView.cs
@@ -517,7 +517,7 @@ void IsParentScrollEnabled(bool scrollEnabled)
517
{
518
var swipeThresholdPercent = MinimumOpenSwipeThresholdPercentage * GetSwipeThreshold();
519
520
- if (Math.Abs(_swipeOffset) < swipeThresholdPercent)
+ if (!scrollEnabled && Math.Abs(_swipeOffset) < swipeThresholdPercent)
521
return;
522
523
if (scrollEnabled == _isScrollEnabled)
0 commit comments