blob: fe46bc7b2464c0e2454672704202d5dadcdeef59 [file] [log] [blame]
import QtQuick 2.12
import QtQuick.Window 2.12
Window {
id: root
property int statusChangedCounter: 0
property alias status: loader.status
visible: true; width: 640; height: 480
Loader {
id: loader
anchors.fill: parent
asynchronous: true
source: "./RedRect.qml"
onStatusChanged: root.statusChangedCounter++
}
}