import QtQuick 2.5 import QtQuick.Window 2.2 Window { visible: true MouseArea { id: mouseArea anchors.fill: parent } Text { anchors.centerIn: parent text: "Hello World" } }