#鸿蒙通关秘籍# 如何实现HarmonyOS Next全屏登录页面的模态效果?

HarmonyOS
2024-12-12 12:00:41
浏览
收藏 0
回答 1
待解决
回答 1
按赞同
/
按时间
一路向北545


Button($r('app.string.full_screen_modal_login_description'))
  .fontColor(Color.White)
  .borderRadius($r('app.integer.border_radius'))
  .type(ButtonType.Normal)
  .backgroundColor($r('app.color.grey_2'))
  .width($r('app.string.size_full'))
  .bindContentCover(this.isPresent, this.loginBuilder)
  .onClick(() => {
    this.isPresent = true;
  })
分享
微博
QQ
微信
回复
2024-12-12 19:09:35
相关问题