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

outdated

A simple and ease 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 ease to use flutter package, to make widgets show up in a smooth way as soon as it is created.

Gif

Add dependency #

dependencies:
  delayed_widget: ^1.0.0

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: The delay time before start animation
animationDuration: The duration of animation
animation: The animation type

32
likes
0
points
646
downloads

Publisher

unverified uploader

Weekly Downloads

A simple and ease 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

License

unknown (license)

Dependencies

flutter

More

Packages that depend on delayed_widget