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

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
        }
    }
}