Qt 6.11 is out! See what's new in the release
blog
Flickable brings image back to the original position
QML and Qt Quick
2
Posts
1
Posters
3.2k
Views
1
Watching
-
Hi, I'm trying to use 'flickable' to move image inside the screen. I can move it, but when I take finger out it came back to the original position. How can I keep the image in the new position ? Thank you.
@Flickable {
anchors.fill: parent
width: parent.width; height: parent.height
contentWidth: selected.width; contentHeight: selected.heightImage { id: selected source: "selected_photo.png" rotation:270 } }@