15 Accessible.ignored: true
19 property Component component
24 property var showAnimation
29 property var hideAnimation
34 property alias asynchronous: loader.asynchronous
39 property alias item: loader.item
47 if (status != Loader.Ready)
49 if (item.showAnimation == undefined && root.showAnimation != undefined)
50 item.showAnimation = root.showAnimation;
51 if (item.hideAnimation == undefined && root.hideAnimation != undefined)
52 item.hideAnimation = root.hideAnimation;
54 if (item.show != undefined)
62 function onVisibleChanged() {
64 if (!loader.item.visible) {
65 loader.sourceComponent = undefined;
75 loader.sourceComponent = root.component;
82 if (loader.item && loader.item.hide != undefined)