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

outdated

custom dialog

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 #

alt text

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

No internet connection dialog #

alt text

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