v1.2.6flutter_scroll_shadow
ScrollShadow는 스크롤 가능한 자식에 그림자를 추가합니다. ScrollController 및 수직 또는 수평 방향을 지원합니다.
41좋아요 2.8만30일 다운로드160Pub 점수
AndroidiOSWebmacOSWindowsLinux
스크롤 위젯에 그림자를 추가하는 Flutter 위젯
{"sdk":"flutter"}^1.18.0^5.0.0{"sdk":"flutter"}아래는 영문 원문 스냅샷입니다. 최신 내용은 GitHub에서 확인하세요.
https://img.shields.io/static/v1?label=flutter&message=flutter_scroll_shadow&color=red??style=for-the-badge&logo=GitHub Pub Package Pub Points Pub Likes
Package Issue Package License
ScrollShadow is a widget for Flutter that adds shadows to a scrollable child.
Supports ScrollController and vertical or horizontal orientation.
| Image |
|---|
| ScrollShadow |
Axis
Make sure to check out the examples on GitHub.
Add the following line to pubspec.yaml:
dependencies:
flutter_scroll_shadow: <last-release>
Complete example available here.
ScrollShadow(
color: Colors.grey,
child: ListView(
children: List.generate(20, (index) => ListTile(title: Text('Element $index'),)),
),
);
color: for the shadows; default: Colors.greysize: The width or height of shadows, depending on Axis; default: 15.0child: Scrollable child contained by the ScrollShadowduration: Milliseconds, as an int, for animation of shadow visibility changes; default: 300fadeInCurve: The animation [Curve] to use for shadow appearance; default: Curves.easeInfadeOutCurve: The animation [Curve] to use for shadow disappearance; default: Curves.easeOutignoreInteraction: Determines if shadow is wrapped inside a [IgnorePointer] widget, so that all touch events with the shadow will be ignored; default: true
| Image | Image |
|---|---|
| Vertically-scrolling child | Horizontally-scrolling child |