custom_progress_dialog 1.0.5 copy "custom_progress_dialog: ^1.0.5" to clipboard
custom_progress_dialog: ^1.0.5 copied to clipboard

Simple and easy to use flutter package for showing progress bar, without the need of adding it to any widget.With just two calls show and dismiss, you can control it.

progress_dialog #

A Simple and easy to use flutter package for showing progress bar.

#Usage

Import the package

import 'package:custom_progress_dialog/custom_progress_dialog.dart';

Create an object for ProgressDialog class

ProgressDialog _progressDialog = ProgressDialog();

showing progress dialog

_progressDialog.showProgressDialog(context,dismissAfter: Duration(seconds: 5),textToBeDisplayed:'Sending...',onDismiss:(){
	//things to do after dismissing -- optional
});
dismissAfter - if null then progress dialog won't dismiss until dismissProgressDialog is called from the code.

dismiss progressDialog

_progressDialog.dismissProgressDialog(context);

Preview: #

4
likes
40
pub points
74%
popularity

Publisher

unverified uploader

Simple and easy to use flutter package for showing progress bar, without the need of adding it to any widget.With just two calls show and dismiss, you can control it.

Repository (GitHub)
View/report issues

License

MIT (LICENSE)

Dependencies

flutter, synchronized

More

Packages that depend on custom_progress_dialog