import QtQuick 2.7 import QtQuick.Layouts 1.0 import QtQuick.Window 2.0 Window { visible: true width: 640 height: 480 title: qsTr("Hello World") Rectangle { anchors.fill: parent color: "blue" } Text { text: "Qbs" color: "white" anchors.centerIn: parent } }