summaryrefslogtreecommitdiffstats
path: root/tests/auto/declarative/qmlgraphicsflickable/data/flickable03.qml
blob: 001bf2fdbb9de630bbc618f85af809220d2486d4 (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: column.width; viewportHeight: column.height

    Column {
        id: column
        Repeater {
            model: 4
            Rectangle { width: 200; height: 300; color: dayColor }
        }
    }
}