- Fixes issue with dismissal #537
- Issue when actionPaneConfigurator is null when calling openCurrentActionPane. Thanks to @EM-Sabeel.
- Issue in auto_close_behavior where removeStatusListener was not called.
- Minimum version of Flutter (3.27.0 now)
- Icon color in actions #512
- Use withValues instead of withOpacity
- Use Object.hash instead of hashValues.
- A way to provide a controller to the Slidable.
- Remove deprecation use of
primaryandsurfaceparameters from OutlinedButton.styleFrom method. (See #443)
- Minimum version of Flutter (3.7.0 now)
- Minimum version of Flutter (3.0.0 now) and Dart (2.17.0 now).
- ClipBehavior.none issue (#361).
- Padding and BorderRadius to SlidableAction.
- Build warning
- A way to automatically close other Slidables within the same group by tapping on them.
- Add a dragDismissible parameter on ActionPane.
- The RTL issue (#244).
- Created a totally different notification system in order to be more flexible.
- Deprecated SlidableNotificationListener in favor of SlidableAutoCloseBehavior.
Same as 1.0.0-dev.9. This is just for making it clear that it's now stable.
- Fixes an issue where we click on the Slidable instead of dragging it (#235).
- Fixes an issue where the Dismissible animation stopped in middle when the gesture was too fast.
- Fixes an issue where the Slidable animation stopped in middle when the gesture was too fast.
- Fixes an issue preventing the actionPaneType to be updated when it animates (#226).
- Fixes an issue preventing the Slidable to reach the extentRatio manually (#225).
- ResizeRequest is now available, and the SlidableController.dismiss method can be used from outside.
- Fixes Dismissal issue with endActionPane (#216).
- Flutter Favorite package logo
- Complete package rewriting in order to be more flexible and simple to use.
- Null Safety Support
- Formatting issues
- Color issue in SlideAction
- Static Analysis issues
- Ripple effect when tapping on the IconSlideAction (#89)
- Option to make the widget non-dismissible by dragging (#101)
- Fix SlidableDrawerActionPane when different than 2 actions (#74).
- Add check for null value in dismissal field, in getter for _dismissThreshold (#71).
- Fix SlidableDrawerActionPane onTap issue (#73).
iconWidgetparameter for SlideAction which allows full customization of the displayed icon.
- Change the SlidableDelegate to a widget. The field is renamed
actionPane. - Change the SlideToDismissDelegate to a SlidableDismissal widget that takes another widget as a child. The field is renamed
dismissal.
- Fix the end extend of actions in dismiss animation (#38).
- onSlideAnimationChanged and onSlideIsOpenChanged on
SlidableController.
- #31 (Issue with dismiss animation).
- Reduce the possibilities for the flutter/flutter#11895 issue to happen.
- The
foregroundColorparameter onIconSlideActionclass.
- The
closeOnCanceledparameter onSlideToDismissDelegateclasses.
- #23 (Issue with Drawer delegate when different action count).
- The
SlidableControllerclass. - The
controllerparameter onSlidableconstructors to enable keeping only oneSlidableopen.
- The
SlidableRenderingModeenum. - The
SlideActionTypeenum. - The
SlideToDismissDelegateclasses.
- Added a renderingMode parameter in the
SlideActionBuildersignature.
- The
enabledparameter onSlidableconstructors to enable or disable the slide effect (enabled by default).
- #11 (slide action not rebuild after controller dismissed).
- The
closeOnTapparameter on slide actions to close when a action has been tapped. - The
closeOnScrollparameter onSlidableto close when the nearestScrollablestarts to scroll. - The static
Slidable.offunction.
- The
dragExtentfield inSlidableDelegateContexthas been changed todragSign.
Slidable.builderconstructor.- Vertical sliding.
- The slide actions are now hosted in a
SlideActionDelegateinstead ofList<Widget>inside theSlidablewidget. - The
leftActionshave been renamed toactions. - The
rightActionshave been renamed tosecondaryActions.
- Initial Open Source release.