#鸿蒙通关秘籍#如何使用鸿蒙OS绘制一个带虚线环的圆?

HarmonyOS
1天前
浏览
收藏 0
回答 1
待解决
回答 1
按赞同
/
按时间
星辰光MOQ

通过Circle组件,使用strokeDashArray设置虚线样式:

@Entry @Component struct CircleExample { build() { Column({ space: 10 }) { Circle({ width: 150, height: 150 }) Circle() .width(150) .height(200) .fillOpacity(0) .strokeWidth(3) .stroke(Color.Red) .strokeDashArray([1, 2]) }.width('100%') } }

分享
微博
QQ
微信
回复
1天前
相关问题
实现一个虚线边框组件。
545浏览 • 1回复 待解决
是否能定义一个返回组件?
235浏览 • 1回复 待解决
如何绘制圆角矩形
367浏览 • 1回复 待解决