aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/quick/qquickflickable/data/fractionalExtent.qml
blob: 2675e8c85a49985e97fb559e12d1d8d0127102ba (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
import QtQuick

Flickable {
    width: 300
    height: 300
    contentWidth: content.width; contentHeight: content.height
    Rectangle {
        id: content
        width: 350
        height: 350
        color: "darkkhaki"
    }
    boundsBehavior: Flickable.StopAtBounds
}