Setup initial qt plugin demo

This commit is contained in:
2025-03-07 11:02:41 +01:00
parent 72e499c7d0
commit 7121fdd252
60 changed files with 2104 additions and 0 deletions

View File

@ -0,0 +1,23 @@
import QtQuick 2.3
Item {
Row {
anchors.right: parent.right
spacing: 4
Rectangle {
height: 100
width: 100
color: "green"
Text {
text: "Hello, World!"
}
}
Rectangle {
height: 100
width: 100
color: "red"
Text {
text: "Hello, World!"
}
}
}
}