summaryrefslogtreecommitdiffstats
path: root/demos/declarative/twitter/TwitterCore/Loading.qml
blob: 94b77f2161112975f5dc28b3f26c12c85233c9b5 (plain)
1
2
3
4
5
6
7
8
import Qt 4.7

Image {
    id: loading; source: "images/loading.png"
    NumberAnimation on rotation {
        from: 0; to: 360; running: loading.visible == true; loops: Animation.Infinite; duration: 900
    }
}