项目作者: robbyrahmana

项目描述 :
Stack Card Widget is fastest way to create swap card in flutter.
高级语言: Dart
项目地址: git://github.com/robbyrahmana/flutter_stack_card.git
创建时间: 2019-07-23T05:57:00Z
项目社区:https://github.com/robbyrahmana/flutter_stack_card

开源协议:MIT License

下载


Flutter Stack Card

Stack Card Widget is fastest way to create swap card in flutter.

Screenshots

StackType.middle
StackType.right

Usage

  1. StackCard.builder(
  2. itemCount: /* Item Count */,
  3. displayIndicator: /* Flag to display the indicator */,
  4. displayIndicatorBuilder: /* Customize the indicator */,
  5. onSwap: (index) {
  6. /* listen for swapping */
  7. },
  8. itemBuilder: (context, index) {
  9. /* item builder */
  10. }
  11. )

Example

Please find example in here: Example