#鸿蒙通关秘籍#在HarmonyOS中如何为组件设置不同边框宽度?

HarmonyOS
2024-12-04 14:16:55
浏览
收藏 0
回答 1
待解决
回答 1
按赞同
/
按时间
REST风吟浅

在HarmonyOS中,从API version 9开始支持设置边框的宽度。通过局部宽度对象来设置不同边的宽度,例如:

// 设置不同边宽度
Text('Custom Border Width')
  .borderWidth({ left: 3, right: 6, top: 10, bottom: 15 })
  .borderColor(Color.Black)
  .width(250)
  .height(150)

使用EdgeWidths对象可以为左、右、上、下边框单独设置宽度。

分享
微博
QQ
微信
回复
2024-12-04 17:00:08
相关问题