import QtQuick import QtQuick.Controls import QtQuick.Layouts GridLayout { columns: 2 rowSpacing: 25 // Grid row ColumnLayout { Label { color: "darksalmon" font.bold: true text: qsTr("Kein Ansprechpartner gefunden") } Label { color: "goldenrod" text: qsTr("Was willst du tun?") } } // Grid row Item { Layout.columnSpan: 2 Layout.fillHeight: true } }