1
0
mirror of https://gitlab.com/kelteseth/ScreenPlay.git synced 2024-09-18 16:32:33 +02:00
ScreenPlay/ScreenPlayWidget/qml/Test.qml

21 lines
453 B
QML
Raw Normal View History

import QtQuick
import ScreenPlayWidget
Rectangle {
2023-02-02 15:25:26 +01:00
implicitWidth: 500
implicitHeight: 300
color: "#80000000"
Text {
id: name
2021-05-16 19:37:55 +02: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"
}
}