Flutter Slidable Versions Save

A Flutter implementation of slidable list item with directional slide actions.

v0.4.1

5 years ago

Added

  • The SlidableController class.
  • The controller argument on Slidable constructors to enable keeping only one Slidable open.

v0.4.0

5 years ago

Dismiss feature

Added

  • The SlidableRenderingMode enum.
  • The SlideActionType enum.
  • The SlideToDismissDelegate classes.

Modified

  • Added a renderingMode parameter in the SlideActionBuilder signature .

v0.3.0

5 years ago

Added

  • The closeOnTap argument on slide actions to close when a action has been tapped.
  • The closeOnScroll argument on Slidable to close when the nearest Scrollable starts to scroll.
  • The static Slidable.of function.

Changed

  • The dragExtent field in SlidableDelegateContext has been changed to dragSign.

v0.2.0

5 years ago

Added

  • Slidable.builder constructor.
  • Vertical sliding.

Changed

  • The slide actions are now hosted in a SlideActionDelegate instead of List<Widget> inside the Slidable widget.
  • The leftActions have been renamed to actions.
  • The rightActions have been renamed to secondaryActions.