mirror of
https://github.com/status-im/status-app.git
synced 2026-08-31 00:51:10 +00:00
23 lines
371 B
QML
23 lines
371 B
QML
import QtQuick
|
|
|
|
import StatusQ.Core.Theme
|
|
|
|
import utils
|
|
import shared.panels
|
|
|
|
SVGImage {
|
|
id: loadingImg
|
|
source: Assets.svg("loading")
|
|
width: 25
|
|
height: 25
|
|
fillMode: Image.Stretch
|
|
RotationAnimator {
|
|
target: loadingImg
|
|
from: 0
|
|
to: 360
|
|
duration: 1200
|
|
running: visible
|
|
loops: Animation.Infinite
|
|
}
|
|
}
|