summaryrefslogtreecommitdiff
path: root/share/qtcreator/templates/qtquickapp/qml/app/qtquick10/main.qml
blob: 1e61dc4e27f9bb2fc742fc34e72839f866688e39 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
import QtQuick 1.0

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