Codebase list ohcount / dfcc369c-a8fa-4697-8331-c0472835aae2/main test / src_dir / example.qml
dfcc369c-a8fa-4697-8331-c0472835aae2/main

Tree @dfcc369c-a8fa-4697-8331-c0472835aae2/main (Download .tar.gz)

example.qml @dfcc369c-a8fa-4697-8331-c0472835aae2/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();
        }
    }
}