Closed LouisBorleeAdevinta closed 7 months ago
For all UIControls using beginTracking / endTracking, we have to add this to prevent cancelTracking from being called on vertical swipes
// Fix conflict with vertical swipes (scrollViews, bottomSheets...)
let panGesture = UIPanGestureRecognizer(target: nil, action: nil)
panGesture.cancelsTouchesInView = false
self.addGestureRecognizer(panGesture)
https://adevinta.slack.com/archives/C04QCSQGQUX/p1712671798336269