Files
magrob-rqt-plugin/resources/qml/helloworld.qml
2025-03-07 11:02:41 +01:00

23 lines
446 B
QML

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