blob: 86a4f19c5cde2248b01e3d4edf186b2a8b9b7071 [file] [log] [blame]
import QtQuick 2.0
Rectangle {
width: 400
height: 200
Item {
objectName: "theItem"
anchors.centerIn: parent
width: childrenRect.width
height: childrenRect.height
Rectangle {
id: text1
anchors.verticalCenter: parent.verticalCenter
width: 100; height: 100; color: "green"
}
Rectangle {
anchors.left: text1.right
anchors.verticalCenter: parent.verticalCenter
width: 100; height: 100; color: "green"
}
}
}