diff --git a/ScreenPlay/qml/Create/WizardsFiles/QMLWidgetMain.qml b/ScreenPlay/qml/Create/WizardsFiles/QMLWidgetMain.qml index a5fad5f2..1c7c35a9 100644 --- a/ScreenPlay/qml/Create/WizardsFiles/QMLWidgetMain.qml +++ b/ScreenPlay/qml/Create/WizardsFiles/QMLWidgetMain.qml @@ -5,8 +5,15 @@ Item { implicitWidth: 300 implicitHeight: 200 + Rectangle { + id: background + anchors.fill:parent + opacity: 0.9 + color: "#333333" + } + Text { - id: name + id: text text: qsTr("My Widget 🚀") anchors.centerIn: parent }