Codebase list ohcount / upstream/4.0.0+git20210223.6654d48 test / src_dir / example.qml
upstream/4.0.0+git20210223.6654d48

Tree @upstream/4.0.0+git20210223.6654d48 (Download .tar.gz)

example.qml @upstream/4.0.0+git20210223.6654d48raw · history · blame

// Just an example of QML file...

import QtQuick 2.0

Rectangle {
    width: 200
    height: 200
    color: "crimson"

    MouseArea {
        anchors.fill: parent
        onClicked: {
            // Was clicked
            Qt.quit();
        }
    }
}