LottieQuick
is a Qt 5.6-compatible library for displaying Lottie animations in Qt Quick.
It is using the rlottie library as a rendering backend.
Register LottieAnimation
component in your Qt Quick application:
qmlRegisterType<LottieQuick::LottieAnimation>("LottieQuick", 1, 0, "LottieAnimation");
then just import LottieQuick 1.0
in QML and you are ready to use Lottie:
LottieAnimation {
source: "animation.json"
}
LottieQuick is provided under the LGPLv2.1 license.