flutter_bouncy

Last updated:

0 purchases

flutter_bouncy Image
flutter_bouncy Images
Add to Cart

Description:

flutter bouncy

flutter_bouncy #

Slivers and list widgets that add a natural springy effect to their items when scrolling
Quick Features #
↕️  Horizontal and vertical scroll direction support
🧠  Sliver implementations for use in existing CustomScrollView's
⛓  Customizable spring/bounce settings with Flutter's SpringDescription
👻  Includes an animated bouncy list that works exactly the same as AnimatedList
Examples #

How to use #
For use in a CustomScrollView use SliverBouncyList/SliverAnimatedBouncyList. The api is orthogonal to the SliverList/SliverAnimatedList
@override
Widget build(BuildContext context) {
return CustomScrollView(
slivers: [
SliverBouncyList(
delegate: SliverChildListDelegate(
[
// Children here
],
),
);
],
);
}

copied to clipboard
If you don't need the Sliver versions then you can just use BouncyList/AnimatedBouncyList. The api is orthogonal to ListView/AnimatedListView
@override
Widget build(BuildContext context) {
return BouncyList(
children: [
// Children here
]
);
}

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.