瀏覽代碼

更新loading

tags/0.0.1
Weller 4 年之前
父節點
當前提交
9fd0b16c6a
共有 1 個檔案被更改,包括 4 行新增3 行删除
  1. +4
    -3
      lib/dialog/loading/loading.dart

+ 4
- 3
lib/dialog/loading/loading.dart 查看文件

@@ -6,8 +6,7 @@ class Loading {
static LoadingDialog _dialog;
static BuildContext _context;

static Future show(
BuildContext context, {
static Future show(BuildContext context, {
String msg,
}) async {
dismiss();
@@ -24,7 +23,9 @@ class Loading {

static dismiss() {
if (_dialog != null && _context != null) {
Navigator.pop(_context);
if (Navigator.canPop(_context)) {
Navigator.pop(_context);
}
}
_context = null;
_dialog = null;


Loading…
取消
儲存