progress_dialog icon indicating copy to clipboard operation
progress_dialog copied to clipboard

A light weight library to easily manage a progress dialog with simple steps whenever you need to do it. You can easily show and hide it.

Results 14 progress_dialog issues
Sort by recently updated
recently updated
newest added

**Describe the bug** ProgressDialogType.Download , show/hide works well. When use pr.update, the process is stopped and dialog is showing. **To Reproduce** ``` await dio.download( downloadUrl, savePath, onReceiveProgress: (rcv, total) {...

**Describe the bug** When the progress dialog is showing if I show my dialog then hide this progress dialog, that will be closed my dialog instead of progress dialog **Expected...

I'm currently trying to make a progress dialog for the signing up process. ` loadingDialog.style( message: "Signing up...", backgroundColor: Colors.grey[900], progressWidget: CircularProgressIndicator(), padding: EdgeInsets.all(20), elevation: 10.0, borderRadius: 3.0, messageTextStyle: TextStyle(color:...

My code is roughly the following: ``` await progressDialog.show(); // (1) await callExternalApi(); // (2) await progressDialog.hide(); // (3) ``` *Between* (2) and (3), the `ProgressDialog dismissed by back button`...

i want to pop out the route, but 80% of times it doesn't work. pr.hide().whenComplete((){ Navigator.pop(context, xxx); });

waiting for response

**Describe the bug** A clear and concise description of what the bug is. First of all thank you so much @fayaz07 for published this great library.Really appreciated to you. Now...

If I want to make a simple progress dialog with some text, I can't do that without creating, then styling the dialog (two steps that could be one). In this...

Working example for problem: ``` import 'package:flutter/material.dart'; import 'package:progress_dialog/progress_dialog.dart'; void main() => runApp(MyApp()); class MyApp extends StatelessWidget { @override Widget build(BuildContext context) { return MaterialApp( title: 'Flutter Demo', theme: ThemeData(...

### What's this PR do? added option for autoHide Duration ### Where should the reviewer start? Mention the files where the reviewer have to review, line numbers or section will...

**Describe the bug** I'm downloading a gif from this url https://loading.io/, and added inside assets in my project ,it's showing spinner without animation. it's static. Are @fayaz07 suggesting us how...