中国优质的IT技术网站
专业IT技术创作平台
IT职业在线教育平台
微信扫码分享
ohpm install ohos_smart_dialog
OhosSmartDialog({ loadingBuilder: customLoading }) @Builder function customLoading(args: ResourceStr = '正在加载中...') { Column() { Image($r('app.media.loading_refresh')).width(50).height(50) Text(args) .fontSize(11) .fontColor($r('app.color.color_222222')) .margin({ top: 11 }) .maxLines(1) .textOverflow({ overflow: TextOverflow.Ellipsis }) } .width(120) .height(120) .justifyContent(FlexAlign.Center) .backgroundColor(Color.White) .borderRadius(12) }