aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/quickwidgets/qquickwidget/data/animating.qml
blob: 1f6467aabe08561f54a67300a5420dc155cb7e7e (plain)
1
2
3
4
5
6
7
8
9
10
11
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; }
    }
}