Flickable does not react to the movement of the mouse
QML and Qt Quick
2
Posts
2
Posters
702
Views
1
Watching
-
When I try to move Flickable with the mouse, it does not move and it does not respond to the mouse wheel, how to enable Flickable dragging?
@ScrollView {
id: scrollview
anchors.fill: parent
flickableItem.dragging: true //<--here is Flickable
Rectangle {
color: "orange"
width: scrollview.viewport.width
height: 2000
}
}@ERROR: Invalid property assignment: "dragging" is a read-only property
Qt 5.3.1; Win7 64x -
@
flickableItem.interactive: true
@