23 lines
446 B
QML
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!"
|
|
}
|
|
}
|
|
}
|
|
} |