Browse Source

Change threshold for dismissible dialog

Neeraj Gupta 2 years ago
parent
commit
a33792f12e
1 changed files with 1 additions and 1 deletions
  1. 1 1
      lib/utils/share_util.dart

+ 1 - 1
lib/utils/share_util.dart

@@ -28,7 +28,7 @@ Future<void> share(
   final dialog = createProgressDialog(
     context,
     "Preparing...",
-    isDismissible: remoteFileCount > 1,
+    isDismissible: remoteFileCount > 2,
   );
   await dialog.show();
   try {