mirror of
https://github.com/status-im/status-desktop.git
synced 2025-01-09 05:52:41 +00:00
19 lines
372 B
QML
19 lines
372 B
QML
import QtQuick 2.13
|
|
import "."
|
|
|
|
SVGImage {
|
|
id: loadingImg
|
|
// TODO replace by a real loading image
|
|
source: "../app/img/settings.svg"
|
|
width: 30
|
|
height: 30
|
|
fillMode: Image.Stretch
|
|
RotationAnimator {
|
|
target: loadingImg;
|
|
from: 0;
|
|
to: 360;
|
|
duration: 1200
|
|
running: true
|
|
loops: Animation.Infinite
|
|
}
|
|
} |