# flutter_progress_dialog **Repository Path**: plugin_levi/flutter_progress_dialog ## Basic Information - **Project Name**: flutter_progress_dialog - **Description**: flutter Plugin - **Primary Language**: Unknown - **License**: Apache-2.0 - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2019-07-06 - **Last Updated**: 2020-12-19 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # progress_dialog A light weight package to show progress dialog. As it is a stateful widget, you can change the text shown on the dialog dynamically. [Get the library](https://pub.dartlang.org/packages/progress_dialog) | [Example](https://pub.dartlang.org/packages/progress_dialog#-example-tab-) ## Supported Dart Versions **Dart SDK version >= 2.1.0** ## Demo [Normal ProgressDialog](https://raw.githubusercontent.com/fayaz07/progress_dialog/master/stateful_1.gif) | [Download ProgressDialog](https://raw.githubusercontent.com/fayaz07/progress_dialog/master/stateful_2.gif) ## How to use Add Package ```yaml progress_dialog: ^1.1.0+1 ``` ```dart import 'package:progress_dialog/progress_dialog.dart'; ``` Create an instance of ProgressDialog ```dart ProgressDialog pr; ``` Initialise the pr object inside the **build()** method passing context to it ## For Normal Progress Dialog