- Bugfix: #174. Fix crashes when using Flutter 3.7 (thanks luccasclezar)
- New Feature: #164. add a draggedItemBuilder widget to support persistent state children (thanks danReynolds)
- Bugfix: #51. Added lint fixes due to Flutter 3. (thanks diegotori).
- Breaking Change: Library now requires Flutter version
3.0.0
or higher.
- New Feature: #143. Allow enableReorder on DraggableWrap (thanks 89jd).
- Removed redundant import statements due to latest Dart analysis rules.
- Bugfix: #75. Add ReorderStartedCallback to ReorderableFlex, Change ReorderableFlex Draggable data to index (thanks pxsanghyo).
- New Feature: #111. Fix: Made Non-ReorderableWrap item non-droppable and non-draggable (thanks avi-yadav).
- New Feature: #136. Ft: add scroll phyiscs to SingleChildScrollView in ReorderableWrap (thanks pcvdheuvel).
- New Feature: #138. Flutter 2.5 deprecation fixes (thanks diegotori).
- Initial Null-Safety release.
- Fix health suggestions.
- Supports making individual child non-reorderable. See ReorderableColumn example 1.
- Fix: Bad type in onLeave
- Removed dependency of FlutterErrorDetails and other ErrorXXX classes.
- Bugfix: needsLongPressDraggable had no default value.
- Flutter version dependency in pubspec
- ReorderableRow and ReorderableColumn: Set needsLongPressDraggable to false to use Draggable. Provide scrollController if use of external scroller controller is preferred.
- Added onReorderStarted callback in ReorderableWrap
- updated README
- Bugfix: DiagnosticsNode instead of String for newer version of Flutter
- Allows use of CupertinoApp
- Added onNoReorder callback
- Sliver's cross axis alignment defaults to start
- Remove the use of global keys in reorderable sliver to allow nested sliver
- Bugfix: "width is null"
- Bugfix: ReorderableWrap supports nested wraps.
- Improvement: children of ReorderableWrap don't have to have a key anymore.
- Included nested ReorderableWrap example
- Bugfix: couldn't add/remove elements in ReorderableWrap.
- Bugfix: added elements weren't draggable in ReorderableSliverList.
- Merged pull request: flag to choose between long press draggable and the short one.
- Added ReorderableSliverList, ReorderableSliverChildBuilderDelegate, and ReorderableSliverChildListDelegate.
- Bugfix: ReorderableFlex's animation.
- Updated API references and README.
- Bugfix: made ReorderableTable's onReorder required.
- Bugfix: corrected scrollDirection in ReorderableRow.
- Updated API references.
- Alignment bugfix.
- Added column examples.