1
0
mirror of https://gitlab.com/kelteseth/ScreenPlay.git synced 2024-09-15 06:52:34 +02:00
ScreenPlay/ScreenPlayWidget/qml/Test.qml
2023-02-02 15:25:26 +01:00

21 lines
453 B
QML

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"
}
}