【HarmonyOS】给组件添加下划线或者画虚线边框可以使用.borderStyle和.borderWidth
【效果】
【示例】
@Entry
@Component
struct Page51 {
build() {
Column() {
Text('虚线边框测试')
.width(200)
.height(150)
.borderStyle(BorderStyle.Dashed)
.borderWidth(1)
.backgroundColor('#F5F5F5')
Row() {
Text('利用底部边框实现添加下划线效果')
.height('48lpx')
.margin({ top: '66lpx' })
.fontSize('28lpx')
.fontColor("#FF1919")
.textAlign(TextAlign.Center)
.borderWidth({ bottom: 1 })
.borderStyle(BorderStyle.Solid)
.borderColor("#FF1919")
}.width('100%').justifyContent(FlexAlign.Center)
}
.width('100%')
.height('100%')
}
}
**粗体** _斜体_ [链接](http://example.com) `代码` - 列表 > 引用
。你还可以使用@
来通知其他用户。