中国优质的IT技术网站
专业IT技术创作平台
IT职业在线教育平台
微信扫码分享
这里就要去组件本身上去设置对应的`stateStyles`属性,具体实现的代码如下: ```kotlin @Entry @Component struct StateStylesSample { build() { Column() { Button('Button1') .stateStyles({ focused: { .backgroundColor('#ffffeef0') }, pressed: { .backgroundColor('#ff707070') }, normal: { .backgroundColor('#ff2787d9') } }) .margin(20) Button('Button2') .stateStyles({ focused: { .backgroundColor('#ffffeef0') }, pressed: { .backgroundColor('#ff707070') }, normal: { .backgroundColor('#ff2787d9') } }) .margin('30%') } } }