summaryrefslogtreecommitdiffstats
path: root/tests/auto/declarative/anchors/data/loop1.qml
blob: a4de1bf915e233faf6e0b52e3a2a2383b39b0258 (plain)
1
2
3
4
5
6
Rect {
    id: rect
    width: 120; height: 200; color: "white"
    Text { id: Text1; anchors.right: Text2.right; text: "Hello" }
    Text { id: Text2; anchors.right: Text1.right; anchors.rightMargin: 10; text: "World" }
}