blob: c6bef581a46388e1e64274cbfb5243788350448b [file] [log] [blame]
import QtQuick 2.0
Rectangle {
width: 200
height: 200
color: "blue"
Rectangle {
id: myRect
objectName: "myRect"
width: 100
height: 100
Behavior on x {
NumberAnimation { duration: 500 }
}
}
}