import QtQuick import QtQuick.Controls ApplicationWindow { visible: true width: 360 height: 640 title: "Hello QML" Rectangle { anchors.fill: parent color: "#f0f0f0" Text { anchors.centerIn: parent text: "Hello from QML!" font.pixelSize: 24 } } }