mirror of
https://github.com/belsabbagh/dotfiles.git
synced 2026-04-11 17:47:09 +00:00
13 lines
308 B
QML
13 lines
308 B
QML
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)
|
|
}
|
|
} |