widget_animator

Creator: coderz1093

Last updated:

0 purchases

TODO
Add to Cart

Description:

widget animator

Widget Animator #


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'),
),
);
},
),
);
copied to clipboard
Check me out: https://antonguinto.com

License

For personal and professional use. You cannot resell or redistribute these repositories in their original state.

Files In This Product:

Customer Reviews

There are no reviews.