ndialog 1.0.0 ndialog: ^1.0.0 copied to clipboard
Dialog material widget with blur background and popup animation
NDialog #
Custom dialog with blur background and popup animation, Made with love by Moch. Nizwar Syafuan ❤
Let's Code! #
showDialog(
context: context,
builder: (context) {
return NDialog(
blur: 5,
content: Text("Hi, This is the content of dialog that you click."),
title: Text("NDialog"),
actions: <Widget>[
FlatButton(
padding: EdgeInsets.only(),
child: Text("You"),
onPressed: () {},
),
FlatButton(
padding: EdgeInsets.only(),
child: Text("Are"),
onPressed: () {},
),
FlatButton(
padding: EdgeInsets.only(),
child: Text("Awesome"),
onPressed: () {},
),
],
);
}
);
That's it, have fun 😀