Initial import from the monolithic Qt.
[profile/ivi/qtdeclarative.git] / tests / auto / declarative / qdeclarativeflickable / data / wheel.qml
1 import QtQuick 1.1
2
3 Rectangle {
4     width: 400
5     height: 400
6     color: "gray"
7
8     Flickable {
9         id: flick
10         objectName: "flick"
11         anchors.fill: parent
12         contentWidth: 800
13         contentHeight: 800
14
15         Rectangle {
16             width: flick.contentWidth
17             height: flick.contentHeight
18             color: "red"
19         }
20     }
21 }