Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -69,8 +69,7 @@ void ITapGestureListener.ShouldHandleTap(object view)
{
this._canProcessTouch = false;
}
}
else if (view is UIKit.UITouch uiTouch)
else if (view is UIKit.UITouch uiTouch)
{
// For SfTextInputLayout or similar views that require precise touch interactions.
var touchLocation = uiTouch.LocationInView(uiTouch.View?.Superview);
Expand Down Expand Up @@ -104,6 +103,8 @@ void ITapGestureListener.ShouldHandleTap(object view)
}
}
}
}

}
#endif
}
Expand Down