Initial import from the monolithic Qt.
[profile/ivi/qtdeclarative.git] / tests / auto / declarative / qdeclarativepositioners / data / vertical-spacing.qml
1 import QtQuick 1.0
2
3 Item {
4     width: 640
5     height: 480
6     Column {
7         objectName: "column"
8         spacing: 10
9         Rectangle {
10             objectName: "one"
11             color: "red"
12             width: 50
13             height: 50
14         }
15         Rectangle {
16             objectName: "two"
17             color: "red"
18             width: 20
19             height: 10
20         }
21         Rectangle {
22             objectName: "three"
23             color: "red"
24             width: 40
25             height: 20
26         }
27     }
28 }