lqml/snippets/busy-simple/qml/main.qml
2024-10-26 12:58:15 +02:00

18 lines
270 B
QML

import QtQuick 2.15
import QtQuick.Controls 2.15
Item {
width: 300
height: 500
AnimatedImage {
objectName: "busy"
anchors.centerIn: parent
width: 32
height: width
z: 10
source: "img/busy.gif"
visible: playing
playing: false
}
}