Category : Swipe

swipable_stack A widget for stacking cards, which users can swipe horizontally and vertically with beautiful animations. (Sorry, the package name swipable_stack is typo of swipeable stack) Usage builder A SwipableStack uses a builder to display widgets. SwipableStack( builder: (context, index, constraints) { return Image.asset(imagePath); }, ), onSwipeCompleted You can get completion event with onSwipeCompleted. SwipableStack( onSwipeCompleted: (index, direction) { print(‘$index, ..

Read more

flutter_swipe_action_cell A package that can give you a cell that can be swiped ,effect is like iOS native Why do I want to create this lib? I like iOS native ‘s swipe action ,but flutter doesn’t give an official widget . So I try to create one. Get started with example Tip:This widget should be ..

Read more