summaryrefslogtreecommitdiffstats
path: root/examples/declarative/loader/loader.qml
blob: f50765118a2a768421c570a19ae8a35eab111b08 (plain)
1
2
3
4
5
6
7
8
9
10
import Qt 4.6

Rect {
    width: 300
    height: 400
    Loader {
        anchors.fill: parent
        source: "Browser.qml"
    }
}