import QtQuick import Quickshell import "./notificationServer" Item { id: notification_root Repeater { // Bars model: Quickshell.screens delegate: Loader { active: true // loads object sourceComponent: Notification {screen: modelData} // creates instance of bar component } } Component.onCompleted: { console.log("[NotificationLoader]:", NotificationS) } }