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

Flickable {
    id: flick

    width: 200
    height: 480

    contentHeight: 100 * 100

    Grid {
        columns: 1
        Repeater {
            model: 100
            Rectangle {
                width: flick.width
                height: 100
                color: Qt.rgba(Math.random(), Math.random(), Math.random(), 1)
            }
        }
    }
}