blob: 1f6467aabe08561f54a67300a5420dc155cb7e7e [file] [log] [blame]
import QtQuick 2.0
Rectangle {
Rectangle {
width: 100
height: 100
anchors.centerIn: parent
color: "red"
NumberAnimation on rotation { from: 0; to: 360; duration: 2000; loops: Animation.Infinite; }
}
}