Last updated:
0 purchases
rounded dialogs
Rounded Dialogs #
Easiest Flutter Package for Custom Rounded Dialogs #
https://www.buymeacoffee.com/heyom
> Adding Permissions #
No Special Permissions Required
copied to clipboard
Extreme Simple use of the package #
Just call the class with function #
ShowRoundedDialog(child: Center(child: Text('Congrats!!!')),height: 200,width: 250).showCustomDialog(context);
copied to clipboard
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);
},
),
copied to clipboard
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.
For personal and professional use. You cannot resell or redistribute these repositories in their original state.
There are no reviews.