View on GitHub
QmlWeb
A QML engine in a web browser.
import QtQuick 2.0 Rectangle { width: 500; height: 200 color: "lightgray" Text { id: helloText text: "Hello world!" anchors.verticalCenter: parent.verticalCenter anchors.horizontalCenter: parent.horizontalCenter font.pointSize: 24; font.bold: true } }