2020-07-30 20:46:25 +00:00
|
|
|
import QtQuick 2.13
|
|
|
|
import "."
|
|
|
|
|
|
|
|
SVGImage {
|
|
|
|
id: loadingImg
|
2020-08-18 18:46:11 +00:00
|
|
|
source: "../app/img/loading.svg"
|
|
|
|
width: 17
|
|
|
|
height: 17
|
2020-07-30 20:46:25 +00:00
|
|
|
fillMode: Image.Stretch
|
|
|
|
RotationAnimator {
|
|
|
|
target: loadingImg;
|
|
|
|
from: 0;
|
|
|
|
to: 360;
|
|
|
|
duration: 1200
|
|
|
|
running: true
|
|
|
|
loops: Animation.Infinite
|
|
|
|
}
|
2020-08-18 18:46:11 +00:00
|
|
|
}
|