qwp Initial release
[qwp] / qml / qwp / content / Loading.qml
1 import QtQuick 1.0
2
3 Image {
4     id: loading; source: "loading.png"
5     //id: loading; source: "progress.png"
6     NumberAnimation on rotation {
7         from: 0; to: 360; running: loading.visible == true; loops: Animation.Infinite; duration: 900
8     }
9 }