aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/quick/qquickanchors/data/fill.qml
blob: 08db199d7b9c7c4bdf9ec80a63342f5408e465c2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
import QtQuick 2.0

Rectangle {
    width: 200; height: 200
    Rectangle {
        objectName: "filler"
        width: 50; height: 50; color: "blue"
        anchors.fill: parent;
        anchors.leftMargin: 10;
        anchors.rightMargin: 20;
        anchors.topMargin: 30;
        anchors.bottomMargin: 40;
    }
}