HarmonyOS 鸿蒙Next Progress 如何设置左边圆角。右边不需要圆角
HarmonyOS 鸿蒙Next Progress 如何设置左边圆角。右边不需要圆角 Progress 如何设置左边圆角。右边不需要圆角
3 回复
参考以下代码:
@Entry
@Component
struct ProgressExample {
build() {
Column({ space: 15 }) {
Text('Linear Progress')
.fontSize(9)
.fontColor(0xCCCCCC)
.width('90%')
Progress({
value: 20,
total: 100,
type: ProgressType.Linear
})
.width(200)
.backgroundColor('#B3E54C')
.style({ strokeRadius: 0, strokeWidth: 100, })
.color('#917AF9')
.borderColor('#00000000')
.borderRadius({
topLeft: 20,
topRight: 0,
bottomLeft: 20,
bottomRight: 0
})
.clip(true)
}
.width('100%')
.margin({ top: 30 })
}
}
}
更多关于HarmonyOS 鸿蒙Next Progress 如何设置左边圆角。右边不需要圆角的实战系列教程也可以访问 https://www.itying.com/category-93-b0.html
BorderRadiuses这里有设置topLeft和bottomLeft吧,是不生效?