How can I measure time passed since the moment I have changed source or sourceComponent property of QML Loader to the moment visual item actually appeared on the screen (got painted)?
Loader {
id: _loader
source: "MyVisualItem.qml"
}
I already tried using statusChanged and Component.onCompleted signals but neither is accurate enough - it is easy to see that actual time is significantly greater.