我有这段 QML 代码:
Column {
spacing: units.gu(2)
anchors {
fill: parent
centerIn: parent
}
Row {
spacing: units.gu(4)
...
}
Row {
spacing: units.gu(4)
...
}
Row {
spacing: units.gu(4)
...
}
Row {
spacing: units.gu(4)
...
}
}
QML编程的最佳实践,如何重用代码以避免常见元素的重复属性?比如,在上面的例子中,避免行“spacing:units.gu(4)”。