中国优质的IT技术网站
专业IT技术创作平台
IT职业在线教育平台
如何取消Button默认的按压效果?
微信扫码分享
@Entry @Component struct Index { build() { Column() { Button("Hello") .padding(15) .stateEffect(false)//按下效果:true 有按压效果 false:取消按压效果 } .width('100%') .height('100%') .justifyContent(FlexAlign.Center) } }