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

outdated

A simple Animated Dialog, with editable content

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 lets cerate a showDialog function adding our AnimatedDialog Widget #

  showDialog(context: context,
    child: AnimatedDialog(
      width: w*0.8,
      height: h*0.6,
      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

Repository (GitHub)
View/report issues

License

unknown (LICENSE)

Dependencies

flutter

More

Packages that depend on animated_dialog