aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/quick/qquickflickable/data/flickableWithTapHandler.qml
blob: 91b81059ab3807d49e888511b36e085a58b0b00c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
import QtQuick

Item {
    width: 300
    height: 300

    Flickable {
        anchors.fill: parent
        anchors.topMargin: 100
        contentWidth: 1000
        contentHeight: 1000

        Rectangle {
            objectName: "childItem"
            x: 20
            y: 50
            width: 20
            height: 20
            color: "red"
            TapHandler {
            }
        }
    }
}