qt6-bb10/qtdeclarative/tests/auto/quick/pointerhandlers/flickableinterop/data/pinchOnFlickableWithParentT...

25 lines
438 B
QML

import QtQuick
Rectangle {
width: 320
height: 320
TapHandler {
onTapped: color = "tomato"
}
Flickable {
anchors.fill: parent
contentWidth: content.width
contentHeight: content.height
Rectangle {
id: content
objectName: "pinchable"
width: 150
height: 150
color: "wheat"
PinchHandler {}
}
}
}