import QtQuick 6.5
import QtQuick.Controls 6.5
ApplicationWindow {
visible: true
width: 400
height: 300
title: "Hello QML with Python"
Rectangle {
anchors.fill: parent
color: "lightblue"
Text {
text: "Hello, World!"
anchors.centerIn: parent
font.pixelSize: 24
}
}
}