2022-03-03 22:50:53 +00:00
|
|
|
import QtQuick 2.12
|
|
|
|
|
|
|
|
import utils 1.0
|
2022-05-12 10:28:46 +00:00
|
|
|
// import Qt.labs.lottieqt 1.0
|
2022-03-03 22:50:53 +00:00
|
|
|
|
|
|
|
Item {
|
|
|
|
id: root
|
|
|
|
|
2022-05-12 10:28:46 +00:00
|
|
|
AnimatedImage {
|
2022-08-01 14:39:05 +00:00
|
|
|
width: 128
|
|
|
|
height: 128
|
2022-03-03 22:50:53 +00:00
|
|
|
anchors.centerIn: parent
|
2022-10-07 10:42:03 +00:00
|
|
|
source: Style.gif("status_splash_" + Style.current.name)
|
2022-03-03 22:50:53 +00:00
|
|
|
}
|
|
|
|
|
2022-05-12 10:28:46 +00:00
|
|
|
// NOTE: keep it if we will decide to switch on lottie
|
|
|
|
// LottieAnimation {
|
|
|
|
// anchors.centerIn: parent
|
|
|
|
// autoPlay: true
|
|
|
|
// loops: LottieAnimation.Infinite
|
|
|
|
// quality: LottieAnimation.HighQuality
|
|
|
|
// source: Style.lottie("status_splash")
|
|
|
|
// }
|
2022-03-03 22:50:53 +00:00
|
|
|
}
|