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

outdated

I have been experimenting with flutter for a while and I stumbled a lot of times making custom widgets from designs for apps. Though flutter is incredibly easy to make UI components, you have to go th [...]

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 #

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

I have been experimenting with flutter for a while and I stumbled a lot of times making custom widgets from designs for apps. Though flutter is incredibly easy to make UI components, you have to go through a lot of experimental processes to get what we want. In these packages, I want to create a simple dialog that can't help you save a lot of time and you can custom it.

Repository (GitHub)
View/report issues

License

unknown (LICENSE)

Dependencies

flutter

More

Packages that depend on flutter_app_dialog