2021-09-10 12:45:15 +02:00
|
|
|
import QtQuick
|
2022-11-06 14:36:40 +01:00
|
|
|
import ScreenPlayWidget
|
2019-03-27 18:38:36 +01:00
|
|
|
|
|
|
|
Rectangle {
|
2023-02-02 15:25:26 +01:00
|
|
|
implicitWidth: 500
|
2022-11-06 14:36:40 +01:00
|
|
|
implicitHeight: 300
|
2019-03-27 18:38:36 +01:00
|
|
|
color: "#80000000"
|
|
|
|
|
|
|
|
Text {
|
|
|
|
id: name
|
2021-05-16 19:37:55 +02:00
|
|
|
|
2019-03-27 18:38:36 +01:00
|
|
|
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"
|
|
|
|
}
|
|
|
|
}
|