aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/quick/qquicksmoothedanimation/data/simpleanimation.qml
blob: b2be63ec94df2e240e8671462820f89923d7a48c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
import QtQuick 2.0

Rectangle {
    width: 300; height: 300;
    Rectangle {
        objectName: "rect"
        color: "red"
        width: 60; height: 60;
        x: 100; y: 100;
    }
    SmoothedAnimation { objectName: "anim"}
}