import QtQuick import QtQuick.Layouts import QtQuick.Controls Item { property string name: "company" anchors.fill: parent Label { text: qsTr("Das Unternehmen") anchors.centerIn: parent font.pixelSize: 57 font.bold: true } }