color_animating_list_view 0.1.0 color_animating_list_view: ^0.1.0 copied to clipboard
Creates a ListView that changes background color on Scrolling.
Description #
This is a simple package to create a ListView that changes colors on scrolling based on the percentage Visibility of a widget on the screen.
Usage #
ColorAnimatingListView is a Stateful Widget that produces Color animations. Include it in your build method like:
ColorAnimatingListView(
children: [
//Children ...
],
colors: [
//Colors ...
],
)
That's all Enjoy.