/qml-explorer

A Debug Console for Qt QML

Primary LanguageQMLBSD 3-Clause "New" or "Revised" LicenseBSD-3-Clause

QML Explorer

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.

Usage

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 {}
}

Example

qmlscene example.qml