listview_animation

Last updated:

0 purchases

listview_animation Image
listview_animation Images
Add to Cart

Description:

listview animation

Animation a ListView






Features #

ListViewScrollNext

Usage #
final controller = ListViewScrollNextController<WItem>();

class WItem extends TItem {
final Color color;
final double height;

WItem({
required this.color,
required this.height,
}) : super(
key: GlobalKey(),
);
}

ListViewScrollNext<WItem>(
controller: controller,
childrens: colors,
itemBuilder: (item) => GestureDetector(
onTap: () {
controller.scrollNext(item);
},
child: Container(
color: item.color,
height: item.height,
),
),
)
copied to clipboard

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.