如何写精华回答,获更多曝光?
发布
@Extend(Button) function initButtonView(click:() => void, radius: number) {
.onClick(()=> {
click()
})
.borderRadius(radius)
.type(ButtonType.Normal)
.backgroundColor('rgba(48, 48, 48, 0.7)')
.fontSize(18)
.fontColor(Color.White)
.height(60)
.borderWidth(2)
.borderColor('rgba(1.0, 1.0, 1.0, 0.5)')
}
borderColor没有生效,一直是黑色的