属性含义介绍
Column({ space: 10 }) {
Row() {
Text('文本描述').size({ width: '80%', height: '60' }).backgroundColor(Color.Red)
}.width('90%').height(90).backgroundColor(Color.Yellow)
}
.width('100%') // 宽度
.height(200) // 高度
.backgroundColor(Color.Pink) // 背景色
.margin({ top: 12 }) // 外边距
.padding(16) // 内边距
.alignItems(HorizontalAlign.Start) // 元素位置
.justifyContent(FlexAlign.Center) // 主轴对齐方式
.borderRadius(12) // 四个角的圆弧度
.border({radius: { topLeft: 15, topRight: 15, } })