https://github.com/codingfries/color_animating_list_view
https://github.com/codingfries/color_animating_list_view
Last synced: 5 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/codingfries/color_animating_list_view
- Owner: CodingFries
- License: mit
- Created: 2021-06-27T01:26:41.000Z (almost 5 years ago)
- Default Branch: master
- Last Pushed: 2021-06-27T01:41:37.000Z (almost 5 years ago)
- Last Synced: 2025-02-02T05:15:30.425Z (over 1 year ago)
- Language: Dart
- Size: 3.52 MB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- License: LICENSE
Awesome Lists containing this project
README

# 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:
```dart
ColorAnimatingListView(
children: [
//Children ...
],
colors: [
//Colors ...
],
)
```
That's all Enjoy.