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

Window {
    visible: true
    width: 360
    height: 360

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

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