I'm creating an Image custom renderer for iOS on Xamarin.Forms. I'm able to successfully recognize the different touch gestures such as pinch gesture and swipe gestures in my iOS custom renderer. My problem is on how to add the zoom and panning functionality for that Image. Looking at the Xamarin documentation, they suggest a ScrollView to handle the zoom and panning functionality. Is there a way to add a ScrollView inside my Image renderer? Is this even the correct approach?
Thanks.