2021-02-08 12:16:28 +00:00
|
|
|
import QtQuick 2.13
|
2021-09-28 15:04:06 +00:00
|
|
|
|
|
|
|
import utils 1.0
|
2021-10-27 21:27:49 +00:00
|
|
|
import shared.panels 1.0
|
2021-02-08 12:16:28 +00:00
|
|
|
|
|
|
|
SVGImage {
|
|
|
|
id: loadingImg
|
2021-09-28 15:04:06 +00:00
|
|
|
source: Style.svg("loading")
|
2021-02-08 12:16:28 +00:00
|
|
|
width: 25
|
|
|
|
height: 25
|
|
|
|
fillMode: Image.Stretch
|
|
|
|
RotationAnimator {
|
|
|
|
target: loadingImg;
|
|
|
|
from: 0;
|
|
|
|
to: 360;
|
|
|
|
duration: 1200
|
2022-06-28 14:44:58 +00:00
|
|
|
running: visible
|
2021-02-08 12:16:28 +00:00
|
|
|
loops: Animation.Infinite
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|