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

outdated

A simple Animated Dialog, with editable content, maintain organization, class and design with animated dialogs for bringing live to your app.

animated_dialog #

Dialogs without constraints, letting us set any width and height, this is very useful to animate it in a beautiful way.

Getting Started #

This is a very useful and powerful project,

To start create a showDialog function adding our AnimatedDialog Widget #

  showDialog(context: context,
    child: AnimatedDialog(
      width: w*0.8, //final width of the dialog
      height: h*0.6, //final height of the dialog
      durationTime: Duration(seconds: 1),
      color: mainWhite,
      borderRadius: BorderRadius.circular(20.0),
      child: Center(
        child: Container(
          child: Text("Hello"),
        ),
      ),
    )
  );

This project is a starting point for a Dart package, a library module containing code that can be shared easily across multiple Flutter or Dart projects.

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

4
likes
0
pub points
46%
popularity

Publisher

unverified uploader

A simple Animated Dialog, with editable content, maintain organization, class and design with animated dialogs for bringing live to your app.

Homepage
Repository (GitHub)
View/report issues

License

unknown (LICENSE)

Dependencies

flutter

More

Packages that depend on animated_dialog