blob: 9fa74ca39e54665424066accebc8ebb98a8420a3 [file] [log] [blame]
import QtQuick 2.0
Rectangle {
width: 400
height: 400
Rectangle {
objectName: "innerRect"
height: 100; width: 100; color: "green"
property real targetX: 100
x: targetX
Behavior on x {
NumberAnimation {}
}
}
}