import QtQuick 2.2 import QtQuick.Window 2.2 Window { visible: true title: qsTr("Hello World") width: 640 height: 480 Rectangle { width: 360 height: 360 color: "#4b66ff" Text { anchors.centerIn: parent text: "Hello World" } MouseArea { anchors.fill: parent onClicked: { Qt.quit() } } } }