summaryrefslogtreecommitdiffstats
path: root/tests/auto/declarative/qmlgraphicsflickable/data/flickable02.qml
blob: cf98dd9950d41fdbdc72ae2b5d28e850fd5aa9ba (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: dayColor }
        }
    }
}