Home > Software design >  Flutter - How to make a stack of slidable card
Flutter - How to make a stack of slidable card

Time:07-10

How to make a stack of slidable cards like this in flutter.

There must be both right and left sliding possible.

enter image description here

CodePudding user response:

For swiping a stack of cards you can use swipable_stack package. There is also this GitHub code to get some ideas in case you want to implement it by yourself not using a package.

  • Related