cross_fade 0.2.1 cross_fade: ^0.2.1 copied to clipboard
A widget to apply a crossfade animation between different states and/or widgets.
If you like this package, please leave a like there on pub.dev and star on GitHub. #
A widget to apply a crossfade animation between different states and/or widgets. It's more flexible than e.g. the official AnimatedCrossFade. Additionally it's really easy to use and efficient.
Examples #
Easy Usage #
CrossFade<int>(
value: value,
builder: (context, i) => Text('$i'),
)