summaryrefslogtreecommitdiff
path: root/share/qtcreator/templates/qtquickapp/qml/app/qtquick10/main.qml
blob: 4e38ee80425a3502610acf44ad7bfa9261c725ca (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
// import QtQuick 1.0 // to target S60 5th Edition or Maemo 5
import QtQuick 1.1

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