flickable item comming out of boundry
Unsolved
QML and Qt Quick
-
I am using flickabel to place the image inside it which can be zoomed and draged. But when i'm zooming the image it is comming out of the boundry of the item. I'm using pageloader to load this area.
-
Did you set the
clip
property of flickable to true?
https://doc.qt.io/qt-5/qml-qtquick-item.html#clip-propFlickable { clip: true Image { } }