import QtQuick 2.7 import QtQuick.Controls 2.1 import QtQuick.Window 2.0 ApplicationWindow { id: window width: 640 height: 480 visible: true Label { text: "Hello, world!" anchors.horizontalCenter: parent.horizontalCenter anchors.verticalCenter: parent.verticalCenter } }