delayed_widget 1.1.2 copy "delayed_widget: ^1.1.2" to clipboard
delayed_widget: ^1.1.2 copied to clipboard

A simple and easy to use flutter package, to make the widget show up in a smooth way as soon as it is created.

delayed_widget #

A simple and easy to use flutter package, to make widgets show up in a smooth way as soon as it is created.

Gif

Gif

Gif

Add dependency #

dependencies:
  delayed_widget: ^1.1.1

Easy to use #

Scaffold(
    appBar: AppBar(
    title: Text('DelayedWidget Example'),
),
body: Center(
    child: DelayedWidget(
        delayDuration: Duration(milliseconds: 200),// Not required
        animationDuration: Duration(seconds: 1),// Not required
        animation: DelayedAnimations.SLIDE_FROM_BOTTOM,// Not required
        child: Container(
            width: 200,
            height: 200,
            color: Colors.red,
        ))),
    )

Attributes #

enable: Enable/Disable animation
delayDuration: Set the delay time before start animation
animationDuration: Set the duration of animation
animation: Set the animation type

31
likes
120
pub points
89%
popularity

Publisher

unverified uploader

A simple and easy to use flutter package, to make the widget show up in a smooth way as soon as it is created.

Repository (GitHub)
View/report issues

Documentation

API reference

License

MIT (LICENSE)

Dependencies

flutter

More

Packages that depend on delayed_widget