GitXplorerGitXplorer
S

qml-explorer

public
22 stars
4 forks
1 issues

Commits

List of commits on branch master.
Unverified
4fac57eab4c346c9d7237adf37cb06a591fcb2d1

Version 0.0.3

SSiecje committed 7 years ago
Verified
906fc4643494ca3c2d72c74b4ffd87f83a15c9de

Merge pull request #2 from benlau/master

SSiecje committed 7 years ago
Unverified
437313e621573efb896137cf90871d236f4be608

Reorganize file structure

bbenlau committed 7 years ago
Unverified
ceccd83215ac56f86c1d1fa2b49d5b68c037ae6a

Updating qpm version

SSiecje committed 7 years ago
Unverified
82d2355b0773d68dcb2e4586b1fe32820c43ca86

Happy New Year

SSiecje committed 7 years ago
Unverified
81e6ad433a35581042a0ffc544441bb3c37d2152

Add qpm files

SSiecje committed 7 years ago

README

The README file for this repository.

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