#鸿蒙学习大百科#如何实现系统的气泡提示功能?

如何实现系统的气泡提示功能?

HarmonyOS
2024-10-25 10:04:25
浏览
收藏 0
回答 1
待解决
回答 1
按赞同
/
按时间
朝花惜拾丶
@State isShowPop:boolean  = false
build() {
  Column() {
    Button("气泡提示")
      .onClick(()=>{
        this.isShowPop = true
      })
      .bindPopup(this.isShowPop,{message:"Hello HarmonyOS"})
  }
  .width('100%')
  .height('100%')
  .justifyContent(FlexAlign.Center)
}
分享
微博
QQ
微信
回复
2024-10-25 15:54:17
相关问题
#鸿蒙学习大百科#如何实现ui优化?
154浏览 • 1回复 待解决