Text
Row() {
Text('文本描述')
.width('50%')// 组件宽度
.height("50")// 组件高度
.size({ width: '80%', height: '60' })// 组价高宽
.backgroundColor(Color.Red)// 背景颜色
.border({ width: 3, style: BorderStyle.Dashed })// 组件边框
.fontSize(40)// 字体大小
.fontWeight(FontWeight.Bold)// 加粗
.fontColor(Color.Blue)// 字体颜色
.textAlign(TextAlign.Center)// 字体居中
.opacity(0.8) // 透明度
}.width('90%').height(90).backgroundColor(Color.Yellow).border({ width: 1, style: BorderStyle.Dashed })
}.width('100%').height(100).margin({ top: 30 })