中国优质的IT技术网站
专业IT技术创作平台
IT职业在线教育平台
如何实现button里面放入图文内容?
微信扫码分享
@Entry @Component struct Index { build() { Column() { Button({ type: ButtonType.Normal, stateEffect: true }) { Row(){ Image($r("app.media.icon01")) .width(30) .height(30) Text("播放") } } .borderRadius(8) .backgroundColor(0x317aff) .width(90) .height(40) } .width('100%') .height('100%') .justifyContent(FlexAlign.Center) } }