import QtQuick import ScreenPlayWidget Rectangle { implicitWidth: 500 implicitHeight: 300 color: "#80000000" Text { id: name text: qsTr("This is a empty test widget. You can change the source in test.qml") horizontalAlignment: Text.AlignHCenter verticalAlignment: Text.AlignVCenter wrapMode: Text.WordWrap anchors.fill: parent anchors.margins: 10 color: "white" } }