Stack Card Widget is fastest way to create swap card in flutter.
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 */
}
)
Please find example in here: Example