21 lines
384 B
QML
21 lines
384 B
QML
import QtQuick 2.13
|
|
import "../../../../imports"
|
|
import "../../../../shared"
|
|
|
|
SVGImage {
|
|
id: loadingImg
|
|
source: "../../../../app/img/loading.svg"
|
|
width: 25
|
|
height: 25
|
|
fillMode: Image.Stretch
|
|
RotationAnimator {
|
|
target: loadingImg;
|
|
from: 0;
|
|
to: 360;
|
|
duration: 1200
|
|
running: true
|
|
loops: Animation.Infinite
|
|
}
|
|
}
|
|
|