中国优质的IT技术网站
专业IT技术创作平台
IT职业在线教育平台
如何实现系统的气泡提示功能?
微信扫码分享
@State isShowPop:boolean = false build() { Column() { Button("气泡提示") .onClick(()=>{ this.isShowPop = true }) .bindPopup(this.isShowPop,{message:"Hello HarmonyOS"}) } .width('100%') .height('100%') .justifyContent(FlexAlign.Center) }