flutter_app_dialog 0.1.0 copy "flutter_app_dialog: ^0.1.0" to clipboard
flutter_app_dialog: ^0.1.0 copied to clipboard

outdated

Flutter app dialog is a simple package to build a dialog that you can save a lot of time.

flutter_app_dialog #

flutter app dialog A Flutter plugin for iOS and Android for simple and easy implement dialogs.

Installation #

Add flutter_app_dialog to your pubspec.yaml dependencies.

Example #

Basic Dialog #

showDialog(
              context: context,
              builder: (BuildContext context) {
                return BaseDialogWidget(
                  child: BasicDialog() ,
                );
              });

Info Dialog #

showDialog(
              context: context,
              builder: (BuildContext context) {
                return BaseDialogWidget(
                  child: InfoDialog() ,
                );
              });

No Internet Connection Dialog #

showDialog(
              context: context,
              builder: (BuildContext context) {
                return BaseDialogWidget(
                  child: NoInternetConnectionDialog() ,
                );
              });

Payment Dialog #

showDialog(
              context: context,
              builder: (BuildContext context) {
                return BaseDialogWidget(
                  child: PaymentDialog() ,
                );
              });
12
likes
0
pub points
44%
popularity

Publisher

unverified uploader

Flutter app dialog is a simple package to build a dialog that you can save a lot of time.

Repository (GitHub)
View/report issues

License

unknown (LICENSE)

Dependencies

flutter

More

Packages that depend on flutter_app_dialog