blob: 43e1ec8572317787762beec480bdfd64578bf4f5 [file] [log] [blame]
import QtQuick 2.0
Rectangle {
width: 240
height: 320
Rectangle {
color: "red"
width: 50; height: 50
x: 100; y: 100
PropertyAnimation on x { from: "blue"; to: "green"; }
}
}