flickable with pinchHandler
-
Whenever i zoom the image contenet inside flickable item, flickable is not able to show all the content of the image. It is only working when image is not zommed. As a simple example i'm using this code:
Flickable { width: 200; height: 200 contentWidth: image.width; contentHeight: image.height Image { id: image; source: "bigImage.png" ; PinchHandler {} } }