Setup initial qt plugin demo
This commit is contained in:
23
resources/qml/helloworld.qml
Normal file
23
resources/qml/helloworld.qml
Normal 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!"
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user