showProgress static method

void showProgress(
  1. double progress, {
  2. String? status,
})

显示带进度的弹窗

progress 进度 (0.0 - 1.0) status 状态文字

用法示例

PPAlert.showProgress(0.7, status: "正在上传...");

Implementation

static void showProgress(double progress, {String? status}) {
  EasyLoading.showProgress(progress, status: status);
}