import QtQuick import qs.services import qs.config Image { asynchronous: true retainWhileLoading: true visible: opacity > 0 opacity: (status === Image.Ready) ? 1 : 0 Behavior on opacity { animation: Appearance.animation.elementMoveEnter.numberAnimation.createObject(this) } }