<div dir="ltr"><div>Hi all,</div><div>In the application I maintain (gPodder) I would like to show an element holding Image(s) in each ListItem, depending on whether or not the ListItem has a property either a component with 2 images or a component with 1 image should be loaded (an possibly also a no image fallback).</div><div><br></div><div>I have tried implementing this using a Loader:</div><div>    Loader {<br>        id: artArea<br>        anchors {<br>            left: parent.left<br>        }<br>        height: titleItem.height + subtitleItem.height<br>        width: titleItem.height + subtitleItem.height<br><br>        asynchronous: true<br>        source: episode_art ? "ArtArea.qml" : "CoverArea.qml"<br>    }</div><div><br></div><div>However this totally tanks performance, using just "ArtArea" without the loader is really fast thus the issue is not the amount of images that need to be loaded.</div><div>Is there a better/faster way to do this?</div><div><br></div><div>Thanks!</div><div>Eli<br></div></div>