Skip to content

Latest commit

 

History

History
33 lines (23 loc) · 575 Bytes

README.md

File metadata and controls

33 lines (23 loc) · 575 Bytes

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