Initial import from the monolithic Qt.
[profile/ivi/qtdeclarative.git] / tests / auto / declarative / qdeclarativeanchors / data / loop2.qml
1 import QtQuick 1.0
2
3 Rectangle {
4   id: container;
5   width: 600;
6   height: 600;
7
8   Image {
9     id: image1
10     source: "http://labs.trolltech.com/blogs/wp-content/uploads/2009/03/3311388091_ac2a257feb.jpg"
11     anchors.right: image2.left
12   }
13
14   Image  {
15     id: image2
16     source: "http://labs.trolltech.com/blogs/wp-content/uploads/2009/03/oslo_groupphoto.jpg"
17     anchors.left: image1.right
18     anchors.leftMargin: 20
19   }
20 }