summaryrefslogtreecommitdiffstats
path: root/demos/declarative/flickr/common/Loading.qml
blob: 87a4ef99cefdd0bbbd69bee5987d291365a6fec7 (plain)
1
2
3
4
5
6
7
8
import Qt 4.6

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