summaryrefslogtreecommitdiff
path: root/share/qtcreator/templates/qtquick/qtquick_2_4/main.qml
blob: adf7a6744640637f4cf1502fbb56409f8d1d2a48 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
import QtQuick 2.4
import QtQuick.Window 2.2

Window {
    visible: true
    width: 360
    height: 360

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

    Text {
        text: qsTr("Hello World")
        anchors.centerIn: parent
    }
}