How properly use Flickable?
Solved
QML and Qt Quick
-
I have following working structure:
Item { ListView { delegate: Rectangle { MouseArea { } <texts, images and controls> { } } } }
I need emit signal when user starts flick. I used Flickable type
Flickable { onFlickStarted: console.warn(contentY) }
In any structure places. But I did not get any output. How use this type? There no complete examples anywhere.