这里写自定义目录标题
Row() {
Text("盒子模型")
.size({ width: 'calc(100% - 20vp)' })
.height(100)
.margin({
left: "10vp",
top: "30vp",
right: "10vp",
bottom: "30vp"
})
.padding("10vp")
.border({ width: "10px", style: BorderStyle.Solid, color: "#0000ff" })
.backgroundColor("#00ff00")
.textAlign(TextAlign.Center)
.onSizeChange((oldValue: SizeOptions, newValue: SizeOptions) => {
console.log('gxh', '旧的: ' + oldValue.width + ';' + oldValue.height)
console.log('gxh', '新的: ' + newValue.width + ';' + newValue.height)
})
}.backgroundColor("#ff0000")
.width('100%')