中国优质的IT技术网站
专业IT技术创作平台
IT职业在线教育平台
微信扫码分享
@Entry @Component struct EnabledExample { build() { Flex({ justifyContent: FlexAlign.SpaceAround }) { Button('disable').enabled(false).backgroundColor(0x317aff).opacity(0.4) Button('enable').backgroundColor(0x317aff) } .width('100%') .padding({ top: 5 }) } }