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

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