Codebase list ohcount / bullseye-backports/main test / src_dir / example.qml
bullseye-backports/main

Tree @bullseye-backports/main (Download .tar.gz)

example.qml @bullseye-backports/mainraw · 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();
        }
    }
}