1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17
import QtQuick 2.9 import QtQuick.Window 2.2 Window { visible: true width: 640 height: 480 title: "$projectname$" Text { anchors.fill: parent horizontalAlignment: Text.AlignHCenter verticalAlignment: Text.AlignVCenter font.bold: true font.pointSize: 42 text: "Hello World!" } }