Warning, /system/mycroft-gui/autotests/subdelegate1.qml is written in an unsupported language. File is not indexed.
0001
0002 import QtQuick 2.9
0003 import QtQuick.Controls 2.0
0004 import org.kde.lottie 1.0
0005 import Mycroft 1.0 as Mycroft
0006
0007 Rectangle {
0008 color: "red"
0009 LottieAnimation {
0010 id: thinkingAnimation
0011 visible: true
0012 anchors.fill:parent
0013 source: Qt.resolvedUrl("./sunny.json")
0014 loops: Animation.Infinite
0015 fillMode: Image.PreserveAspectFit
0016 running: true
0017 }
0018 }