Initial import from the monolithic Qt.
[profile/ivi/qtdeclarative.git] / tests / auto / declarative / qdeclarativeloader / data / AnchoredLoader.qml
1 import QtQuick 1.0
2
3 Rectangle {
4     width: 300
5     height: 200
6     color: "blue"
7     Loader {
8         objectName: "loader"
9         anchors.fill: parent
10         sourceComponent: Component {
11             Rectangle { color: "red"; objectName: "sourceElement" }
12         }
13     }
14 }