import QtQuick 2.12 import QtQuick.Window 2.12 Window { visible: true width: 640 height: 480 title: qsTr("Hello World") Text{ text: "0"; font.family: "Segoe UI"; font.pixelSize: 12 anchors.centerIn: parent } }