flutter_stack_card 0.2.0+1 flutter_stack_card: ^0.2.0+1 copied to clipboard
Stack Card Widget is fastest way to create swap card in flutter.
Flutter Stack Card #
Stack Card Widget is fastest way to create swap card in flutter.
Screenshots #
Usage #
StackCard.builder(
itemCount: /* Item Count */,
displayIndicator: /* Flag to display the indicator */,
displayIndicatorBuilder: /* Customize the indicator */,
onSwap: (index) {
/* listen for swapping */
},
itemBuilder: (context, index) {
/* item builder */
}
)
Example #
Please find example in here: Example