美文网首页
鸿蒙ArkTS/ArkUI电商实战-全局添加加载loading提

鸿蒙ArkTS/ArkUI电商实战-全局添加加载loading提

作者: ISwiftUI | 来源:发表于2024-04-16 15:10 被阅读0次

    鸿蒙ArkTS/ArkUI电商实战系列

    本章内容

    全局添加加载loading提示,线程间通信

    效果图:


    效果图

    相关源码示例:

    component目录下添加LoadingDialog.ets
    LoadingDialog.ets

    import hilog from '@ohos.hilog'
    
    @CustomDialog
    export struct LoadingDialog {
      @Prop loadingTips: string
      @State rotateAngle: number = 0
      //弹窗控制器
      controller: CustomDialogController
      private tag: string = 'LoadingDialog'
    
      aboutToAppear() {
        hilog.debug(0xFFFF, this.tag ,"Loading展示》》》》》")
      }
    
      build() {
        Stack() {
          Column() {
            Image($r('app.media.common_loading'))
              .height(50)
              .width(50)
              .rotate({angle: this.rotateAngle })
              .animation({
                duration: 500,
                iterations: -1,
                curve: Curve.Friction
              }).onAppear(() => {
              this.rotateAngle = 360
            })
            Text(this.loadingTips)
              .fontSize('15fp')
              .margin({ top: 10 })
          }
          .justifyContent(FlexAlign.Center)
          .height(150)
          .width(150)
          .backgroundColor(Color.White)
          .border({ radius: 5 })
        }
      }
    }
    

    event目录下创建EventKeys.etsLoadingDialogEvent.etsDialogUtils.ets文件
    EventKeys.ets

    相关文章

      网友评论

          本文标题:鸿蒙ArkTS/ArkUI电商实战-全局添加加载loading提

          本文链接:https://www.haomeiwen.com/subject/huijxjtx.html