summaryrefslogtreecommitdiff
path: root/share/qtcreator/templates/qml/qtquick_2_1/main.qml
blob: 88ea490076e00b1c8065d6643f028ace330eef14 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
import QtQuick 2.1

Rectangle {
    width: 360
    height: 360
    Text {
        anchors.centerIn: parent
        text: "Hello World"
    }
    MouseArea {
        anchors.fill: parent
        onClicked: {
            Qt.quit();
        }
    }
}