QML Explorer is a debug window that allows you to check values in QML.
The code started with the JS Console code in the Cadaques book.
Add Explorer {}
to your .qml file. It opens a new window.
import QtQuick 2.5
Item {
id: root
property string hello: "Hello"
property var world: "World"
Text {
id: txt
text: "Hello"
}
Explorer {}
}
qmlscene example.qml