我想知道是否可以在 qml 中创建一个元素网格,它完全均匀地填充网格/父级的宽度和高度:
Grid {
columns: 2
Repeater {
model: 4
Rectangle {
width: /* ??? */
height: / * ??? */
}
}
}
我认为必须在这里设置绝对值。使用anchors.fill: parent
将不起作用,以及类似width: parent.width / 2
.