aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/quick/qquickflickable/data/cancel.qml
blob: d1c3fddbf20d7550783bc74c75d7e78082e101c0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
import QtQuick 2.0

Flickable {
    width: 200; height: 200
    contentWidth: row.width; contentHeight: row.height

    Row {
        id: row
        objectName: "row"
        Repeater {
            model: 4
            Rectangle { width: 400; height: 600; color: "yellow"; border.width: 1 }
        }
    }
}