flutter_app_dialog 0.2.0 copy "flutter_app_dialog: ^0.2.0" to clipboard
flutter_app_dialog: ^0.2.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() ,
              );
            });

Rating Dialog #

showDialog(
            context: context,
            builder: (BuildContext context) {
              return BaseDialogWidget(
                child: RatingDialog(
                  onRatingSubmit: (value) {
                    print('Rating value: $value');
                  },
                ) ,
              );
            });
12
likes
40
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

MIT (LICENSE)

Dependencies

flutter, rxdart

More

Packages that depend on flutter_app_dialog