11 lines
136 B
QML
11 lines
136 B
QML
import QtQuick 2.0
|
|
|
|
Item {
|
|
width: 100; height: 100
|
|
|
|
Rectangle {
|
|
anchors.fill: parent
|
|
objectName: "rect"
|
|
}
|
|
}
|