summaryrefslogtreecommitdiffstats
path: root/tests/big-flickable.qml
blob: e3591b056476daac2199c549bf6cd3a485a37de5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
import QtQuick 2.0

Item {
    width: 360
    height: 640

    Flickable {
        id: flick
        anchors.fill: parent

    contentWidth: 4000
    contentHeight: 3000

    Image {
        source: "img.png"
        width: flick.contentWidth
        height: flick.contentHeight
        }
    }
}