10 lines
120 B
QML
10 lines
120 B
QML
import QtQuick 2.15
|
|
|
|
Rectangle {
|
|
id: root
|
|
objectName: "root"
|
|
width: 100
|
|
height: 100
|
|
color: "gray"
|
|
}
|