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…
Откажи
Сачувај