summaryrefslogtreecommitdiffstats
path: root/tests/auto/declarative/qmlgraphicsflickable/data/flickable02.qml
blob: 3e08359f083b82143c9da07dfc32be75f8008bc6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
import Qt 4.6

Flickable {
    width: 100; height: 100
    viewportWidth: row.width; viewportHeight: row.height

    Row {
        id: row
        Repeater {
            model: 4
            Rectangle { width: 200; height: 300; color: "blue" }
        }
    }
}