aboutsummaryrefslogtreecommitdiffstats
path: root/tests/benchmarks/qml/librarymetrics_performance/data/flickable.3.qml
blob: 956103eef73788a619dd59065d428f14dd7ec356 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
import QtQuick 2.0

Flickable {
    width: 320
    height: 480
    contentWidth: c1.width
    contentHeight: c1.height

    Rectangle {
        id: c1
        width: 500
        height: 1000
        color: "blue"
    }
}