v0.0.4stacked_card_carousel
一个用于创建垂直轮播图的堆叠卡片小部件。
223喜欢 526近 30 天下载150Pub 分数
AndroidiOSWebmacOSWindowsLinux
带有堆叠卡片的动画轮播图组件。
{"sdk":"flutter"}{"sdk":"flutter"}以下为英文项目原文快照,最新内容请访问 GitHub。
A widget for creating a vertical carousel with stacked cards.
cardsStack fadeOutStack
import 'package:stacked_card_carousel/stacked_card_carousel.dart';
StackedCardCarousel widget StackedCardCarousel(
items: cards,
);
| Attribute | Data type | Description | Default |
|---|---|---|---|
| items | List | List of card widgets. | - |
| type | StackedCardCarouselType | A type of cards stack carousel. | cardsStack |
| initialOffset | double | Initial vertical top offset for cards. | 40.0 |
| spaceBetweenItems | double | Vertical space between items. Value start from top of a first item. | 400.0 |
| applyTextScaleFactor | bool | If set to true scales up space and position linearly according to text scale factor. Scaling down is not included. | true |
| pageController | PageController | Use it for your custom page controller. | PageController() |
| onPageChanged | void Function(int pageIndex) | Listen to page index changes. | null |
Grigori Hlopkov - GitHub