{"id":17650845,"url":"https://github.com/rickypid/flutter_scroll_shadow","last_synced_at":"2025-05-07T04:04:00.636Z","repository":{"id":52287629,"uuid":"363068203","full_name":"rickypid/flutter_scroll_shadow","owner":"rickypid","description":"Flutter widget to add shadow on scroll widgets","archived":false,"fork":false,"pushed_at":"2025-01-14T09:16:25.000Z","size":4041,"stargazers_count":11,"open_issues_count":1,"forks_count":7,"subscribers_count":2,"default_branch":"master","last_synced_at":"2025-05-07T04:03:52.476Z","etag":null,"topics":["animation","dart","flutter","flutter-package","flutter-widget"],"latest_commit_sha":null,"homepage":"https://pub.dev/packages/flutter_scroll_shadow","language":"Dart","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"bsd-3-clause","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/rickypid.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","contributing":null,"funding":".github/FUNDING.yml","license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null},"funding":{"github":"rickypid","custom":"https://buymeacoffee.com/veweju"}},"created_at":"2021-04-30T07:54:33.000Z","updated_at":"2025-02-24T15:12:21.000Z","dependencies_parsed_at":"2024-01-08T21:25:24.917Z","dependency_job_id":"a8aebc7c-dde3-4a89-b050-c4bf084aa512","html_url":"https://github.com/rickypid/flutter_scroll_shadow","commit_stats":null,"previous_names":[],"tags_count":10,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/rickypid%2Fflutter_scroll_shadow","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/rickypid%2Fflutter_scroll_shadow/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/rickypid%2Fflutter_scroll_shadow/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/rickypid%2Fflutter_scroll_shadow/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/rickypid","download_url":"https://codeload.github.com/rickypid/flutter_scroll_shadow/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":252810271,"owners_count":21807759,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["animation","dart","flutter","flutter-package","flutter-widget"],"created_at":"2024-10-23T11:39:34.310Z","updated_at":"2025-05-07T04:04:00.608Z","avatar_url":"https://github.com/rickypid.png","language":"Dart","readme":"#### flutter_scroll_shadow\n# Scroll Shadow\n\n[![](https://img.shields.io/static/v1?label=flutter\u0026message=flutter_scroll_shadow\u0026color=red??style=for-the-badge\u0026logo=GitHub)](https://github.com/rickypid/flutter_scroll_shadow)\n[![Pub Package](https://img.shields.io/pub/v/flutter_scroll_shadow.svg?style=flat-square)](https://pub.dartlang.org/packages/flutter_scroll_shadow)\n[![Pub Points](https://img.shields.io/pub/points/flutter_scroll_shadow)](https://pub.dev/packages/flutter_scroll_shadow/score)\n[![Pub Likes](https://img.shields.io/pub/likes/flutter_scroll_shadow)](https://pub.dev/packages/flutter_scroll_shadow/score)\n\n[![Package Issue](https://img.shields.io/github/issues/rickypid/flutter_scroll_shadow)](https://github.com/rickypid/flutter_scroll_shadow/issues)\n![Package License](https://img.shields.io/github/license/rickypid/flutter_scroll_shadow)\n\n`ScrollShadow` is a widget for Flutter that adds shadows to a scrollable child.\n\nSupports `ScrollController` and vertical or horizontal orientation.\n\n| ![Image](https://github.com/rickypid/flutter_scroll_shadow/blob/master/doc/.media/example.gif?raw=true) |\n| :------------: |\n| **ScrollShadow** |\n\n## Features\n* Adds shadows over a scrollable child while not at its max extents\n* Supports vertical and horizontal `Axis`\n* Customizable animation duration\n* Determine how wide or tall shadows render\n\n\u0026nbsp;\n\n## Usage\nMake sure to check out the [examples on GitHub](https://github.com/rickypid/flutter_scroll_shadow/tree/master/example).\n\n### Installation\nAdd the following line to `pubspec.yaml`:\n```yaml\ndependencies:\n  flutter_scroll_shadow: \u003clast-release\u003e\n```\n\n### Basic setup\n*Complete example [available here](https://github.com/rickypid/flutter_scroll_shadow/blob/master/example/lib/main.dart).*\n\n```dart\nScrollShadow(\n  color: Colors.grey,\n  child: ListView(\n    children: List.generate(20, (index) =\u003e ListTile(title: Text('Element $index'),)),\n  ),\n);\n```\n\n### Properties\n* `color`: for the shadows; default: `Colors.grey`\n* `size`: The width or height of shadows, depending on `Axis`; default: `15.0`\n* `child`: Scrollable child contained by the `ScrollShadow`\n* `duration`: Milliseconds, as an `int,` for animation of shadow visibility changes; default: `300`\n* `fadeInCurve`: The animation [Curve] to use for shadow appearance; default: `Curves.easeIn`\n* `fadeOutCurve`: The animation [Curve] to use for shadow disappearance; default: `Curves.easeOut`\n* `ignoreInteraction`: Determines if shadow is wrapped inside a [IgnorePointer] widget, so that all touch events with the shadow will be ignored; default: `true`\n\n\u0026nbsp;\n\n## Example\n![Image](https://github.com/rickypid/flutter_scroll_shadow/blob/master/doc/.media/example_vertical.png?raw=true) | ![Image](https://github.com/rickypid/flutter_scroll_shadow/blob/master/doc/.media/example_horizontal.png?raw=true)\n:-:| :-:\n**Vertically-scrolling child** | **Horizontally-scrolling child**\n\n## 📚 My open source projects\n\n### Flutter\n\n| Package | Verison | Score | Likes | Test | Coverage |\n|--|--|--|--|--|--|\n| [![](https://img.shields.io/static/v1?label=flutter\u0026message=flutter_expandable_table\u0026color=red??style=for-the-badge\u0026logo=GitHub)](https://github.com/rickypid/flutter_expandable_table) | [![Pub Package](https://img.shields.io/pub/v/flutter_expandable_table.svg?style=flat-square)](https://pub.dartlang.org/packages/flutter_expandable_table) | [![Pub Points](https://img.shields.io/pub/points/flutter_expandable_table)](https://pub.dev/packages/flutter_expandable_table/score) | [![Pub Likes](https://img.shields.io/pub/likes/flutter_expandable_table)](https://pub.dev/packages/flutter_expandable_table/score) |  |  |\n| [![](https://img.shields.io/static/v1?label=flutter\u0026message=widget_tree_depth_counter\u0026color=red??style=for-the-badge\u0026logo=GitHub)](https://github.com/rickypid/widget_tree_depth_counter) | [![Pub Package](https://img.shields.io/pub/v/widget_tree_depth_counter.svg?style=flat-square)](https://pub.dartlang.org/packages/widget_tree_depth_counter) | [![Pub Points](https://img.shields.io/pub/points/widget_tree_depth_counter)](https://pub.dev/packages/widget_tree_depth_counter/score) | [![Pub Likes](https://img.shields.io/pub/likes/widget_tree_depth_counter)](https://pub.dev/packages/widget_tree_depth_counter/score) |  |  |\n| [![](https://img.shields.io/static/v1?label=flutter\u0026message=flutter_scroll_shadow\u0026color=red??style=for-the-badge\u0026logo=GitHub)](https://github.com/rickypid/flutter_scroll_shadow) | [![Pub Package](https://img.shields.io/pub/v/flutter_scroll_shadow.svg?style=flat-square)](https://pub.dartlang.org/packages/flutter_scroll_shadow) | [![Pub Points](https://img.shields.io/pub/points/flutter_scroll_shadow)](https://pub.dev/packages/flutter_scroll_shadow/score) | [![Pub Likes](https://img.shields.io/pub/likes/flutter_scroll_shadow)](https://pub.dev/packages/flutter_scroll_shadow/score) |  |  |\n| [![](https://img.shields.io/static/v1?label=flutter\u0026message=flutter_bargraph\u0026color=red??style=for-the-badge\u0026logo=GitHub)](https://github.com/rickypid/flutter_bargraph) | [![Pub Package](https://img.shields.io/pub/v/flutter_bargraph.svg?style=flat-square)](https://pub.dartlang.org/packages/flutter_bargraph) | [![Pub Points](https://img.shields.io/pub/points/flutter_bargraph)](https://pub.dev/packages/flutter_bargraph/score) | [![Pub Likes](https://img.shields.io/pub/likes/flutter_bargraph)](https://pub.dev/packages/flutter_bargraph/score) |  |  |\n\n\n### Dart\n\n| Package | Verison | Score | Likes | Test | Coverage |\n|--|--|--|--|--|--|\n| [![](https://img.shields.io/static/v1?label=dart\u0026message=cowsay\u0026color=red??style=for-the-badge\u0026logo=GitHub)](https://github.com/rickypid/cowsay) | [![Pub Package](https://img.shields.io/pub/v/cowsay.svg?style=flat-square)](https://pub.dartlang.org/packages/cowsay) | [![Pub Points](https://img.shields.io/pub/points/cowsay)](https://pub.dev/packages/cowsay/score) | [![Pub Likes](https://img.shields.io/pub/likes/cowsay)](https://pub.dev/packages/cowsay/score) | [![Test CI](https://github.com/rickypid/cowsay/actions/workflows/test.yml/badge.svg)](https://github.com/rickypid/cowsay/actions/workflows/test.yml) | [![codecov](https://codecov.io/gh/rickypid/cowsay/branch/master/graph/badge.svg?token=Z65KEB9SAX)](https://codecov.io/gh/rickypid/cowsay) |\n| [![](https://img.shields.io/static/v1?label=dart\u0026message=telegram_link\u0026color=red??style=for-the-badge\u0026logo=GitHub)](https://github.com/rickypid/telegram_link) | [![Pub Package](https://img.shields.io/pub/v/telegram_link.svg?style=flat-square)](https://pub.dartlang.org/packages/telegram_link) | [![Pub Points](https://img.shields.io/pub/points/telegram_link)](https://pub.dev/packages/telegram_link/score) | [![Pub Likes](https://img.shields.io/pub/likes/telegram_link)](https://pub.dev/packages/telegram_link/score) | [![Test CI](https://github.com/rickypid/telegram_link/actions/workflows/test.yml/badge.svg)](https://github.com/rickypid/telegram_link/actions/workflows/test.yml) | [![codecov](https://codecov.io/gh/rickypid/telegram_link/branch/main/graph/badge.svg?token=Z65KEB9SAX)](https://codecov.io/gh/rickypid/telegram_link) |","funding_links":["https://github.com/sponsors/rickypid","https://buymeacoffee.com/veweju"],"categories":[],"sub_categories":[],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Frickypid%2Fflutter_scroll_shadow","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Frickypid%2Fflutter_scroll_shadow","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Frickypid%2Fflutter_scroll_shadow/lists"}