feat(@desktop): Replace image on animation on splash screen

Close #4984
This commit is contained in:
mishkarogachev 2022-05-12 13:28:46 +03:00 committed by Iuri Matias
parent ef36853690
commit 244dda1b7d
4 changed files with 20 additions and 20 deletions

View File

@ -1,7 +1,7 @@
import QtQuick 2.12
import utils 1.0
//import Qt.labs.lottieqt 1.0
// import Qt.labs.lottieqt 1.0
Item {
id: root
@ -17,24 +17,19 @@ Item {
}
}
Image {
width: 150
height: 150
fillMode: Image.PreserveAspectFit
AnimatedImage {
id: splashLogo
anchors.centerIn: parent
source: Style.svg("status-logo-circle")
scale: 0.5
source: Style.gif("status_splash")
}
// LottieAnimation {
// anchors.centerIn: parent
// autoPlay: false
// loops: LottieAnimation.Infinite
// quality: LottieAnimation.MediumQuality
// source: Style.lottie("status_splash")
// onStatusChanged: {
// if (status === LottieAnimation.Ready) {
// start();
// }
// }
// }
// 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")
// }
}

View File

@ -21,8 +21,10 @@ var qrcExtensions = map[string]bool{
".otf": true,
".ttf": true,
".webm": true,
".qm": true,
".txt": true,
".qm": true,
".txt": true,
".gif": true,
".json": true,
}
func main() {

Binary file not shown.

After

Width:  |  Height:  |  Size: 352 KiB

View File

@ -52,4 +52,7 @@ QtObject {
function lottie(name) {
return assetPath + "lottie/" + name + ".json";
}
function gif(name) {
return assetPath + "gif/" + name + ".gif";
}
}