mirror of
https://github.com/JulianGro/overte.git
synced 2025-04-12 10:12:33 +02:00
18 lines
284 B
QML
18 lines
284 B
QML
import QtQuick 2.5
|
|
import QtQuick.Controls 1.4
|
|
|
|
Rectangle {
|
|
width: 100
|
|
height: 100
|
|
color: "white"
|
|
Rectangle {
|
|
width: 10
|
|
height: 10
|
|
color: "red"
|
|
}
|
|
|
|
Label {
|
|
text: "OverlayWindowTestString"
|
|
anchors.centerIn: parent
|
|
}
|
|
}
|