#鸿蒙通关秘籍#一个组件上如何挂载多个bindSheet弹窗?

HarmonyOS
1天前
浏览
收藏 0
回答 1
待解决
回答 1
按赞同
/
按时间
HDD梦蝶翼
没想到有人有跟我一样的需求呢,我刚写过类似的案例,给博主参考一下

enum BindType {
  Null,
  Type1,
  Type2,
  Type3
}

@Entry
@Component
struct TestPage {
  @State isShowBind: boolean = false
  @State bindType: BindType = BindType.Null

  build() {
    Column() {
      Button('bind1').onClick(() => {
        this.bindType = `BindType.Type1`
        this.isShowBind = true
      })

      Button('bind2').onClick(() => {
        this.bindType = `BindType.Type2`
        this.isShowBind = true
      })

      Button('bind3').onClick(() => {
        this.bindType = `BindType.Type3`
        this.isShowBind = true
      })
    }
    .width('100%')
    .height('100%')
    .bindSheet(`$$this.isShowBind`, this.bindBuilder())
  }

  @Builder
  bindBuilder() {
    Column() {
      if (this.bindType == `BindType.Type1`) {
        this.bindSheetBuilder1();
      } else if (this.bindType == `BindType.Type2`) {
        this.bindSheetBuilder2();
      } else if (this.bindType == `BindType.Type3`) {
        this.bindSheetBuilder3();
      }
    }
  }

  @Builder
  bindSheetBuilder1() {
    Text('1')
  }

  @Builder
  bindSheetBuilder2() {
    Text('2')
  }

  @Builder
  bindSheetBuilder3() {
    Text('3')
  }
}
分享
微博
QQ
微信
回复
1天前
相关问题
ArkTS如何实现一个底部弹窗
766浏览 • 1回复 待解决
如何实现一个带动画的弹窗
477浏览 • 1回复 待解决
如何一个Component画到Pixelmap
1874浏览 • 1回复 待解决
一个页面怎么实现多个AbilitySlice?
14313浏览 • 5回复 待解决
如何一个Component画到Pixelmap呢?
2582浏览 • 1回复 待解决
如何实现一个验证码弹窗子窗口
341浏览 • 1回复 待解决
如何快速开发出一个自定义弹窗
356浏览 • 1回复 待解决
如何实现一个折叠组件
976浏览 • 1回复 待解决
HarmonyOS bindSheet半模态弹窗
223浏览 • 1回复 待解决