widget_animator 1.0.0+7 copy "widget_animator: ^1.0.0+7" to clipboard
widget_animator: ^1.0.0+7 copied to clipboard

Animate your widgets fast and easy with this package. Just wrap ANY widgets that you'd like to animate and wallah, your widget is now animating.

Widget Animator #

Build Status Build Status

This package helps you to easily animate your widgets with just a few steps.

This works well on your ListView items and... actually all of your widgets!

Demo #

Using #

 return Scaffold(
      backgroundColor: Colors.white,
      body: ListView.builder(
        itemCount: 32,
        itemBuilder: (context, index) {
            return WidgetAnimator(
              curve: Curves.easeIn, // Optional, choose the type of animation curve you want!
              duration: Duration(milliseconds: 120), // Optional, defaults to 290ms
              child: ListTile(
                title: Text('Item $index'),
              ),
            );
        },
      ),
    );

Check me out: https://antonguinto.com

13
likes
20
pub points
21%
popularity

Publisher

verified publisherdev-anton.engineer

Animate your widgets fast and easy with this package. Just wrap ANY widgets that you'd like to animate and wallah, your widget is now animating.

Repository (GitHub)
View/report issues

License

unknown (LICENSE)

Dependencies

flutter

More

Packages that depend on widget_animator