ndialog 1.0.0 copy "ndialog: ^1.0.0" to clipboard
ndialog: ^1.0.0 copied to clipboard

outdated

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 😀

Screenshot #

216
likes
0
pub points
96%
popularity

Publisher

verified publishernizwar.dev

Dialog material widget with blur background and popup animation

Homepage

License

unknown (LICENSE)

Dependencies

flutter, simple_animations

More

Packages that depend on ndialog