Files
qt-creator/share/qtcreator/templates/qtquickapp/qml/app/main.qml
2011-02-07 12:47:07 +01:00

17 lines
248 B
QML

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