Rounded Dialogs

Easiest Flutter Package for Custom Rounded Dialogs

https://www.buymeacoffee.com/heyom https://www.buymeacoffee.com/heyom


> Adding Permissions

     No Special Permissions Required

Extreme Simple use of the package

Just call the class with function

ShowRoundedDialog(child: Center(child: Text('Congrats!!!')),height: 200,width: 250).showCustomDialog(context);

If you take an example to fit (For beginners to understand)

ElevatedButton(
            child: Text('Show Dialog'),
            onPressed: () {
              ShowRoundedDialog(
                      child: Center(child: Text('Congrats!!!')),
                      height: 200,
                      width: 250)
                  .showCustomDialog(context);
            },
          ),

Look at the example linked to know more

https://pub.dev/packages/rounded_dialogs/example


Getting Started with Flutter

For help getting started with Flutter, view our online documentation, which offers tutorials, samples, guidance on mobile development, and a full API reference.

Libraries

rounded_dialogs