Skip to content

Commit

Permalink
Bump version
Browse files Browse the repository at this point in the history
  • Loading branch information
philip-brink committed Nov 26, 2024
1 parent b1d2e60 commit 0415ce8
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 1 deletion.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# Changelog

[0.4.2] - 26 November 2024

* Add key getter to drag and drop list interface (thanks [@juancdominici](https://github.com/juancdominici))

[0.4.1] - 12 June 2024

* Add key to DragAndDropItem and DragAndDropList (thanks [@saileshbro](https://github.com/saileshbro))
Expand Down
1 change: 1 addition & 0 deletions lib/drag_and_drop_list.dart
Original file line number Diff line number Diff line change
Expand Up @@ -49,6 +49,7 @@ class DragAndDropList implements DragAndDropListInterface {
/// Set to false if it must remain fixed.
@override
final bool canDrag;
@override
final Key? key;
DragAndDropList({
required this.children,
Expand Down
1 change: 1 addition & 0 deletions lib/drag_and_drop_list_expansion.dart
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,7 @@ class DragAndDropListExpansion implements DragAndDropListExpansionInterface {
@override
final bool canDrag;

@override
final Key? key;

/// Disable to borders displayed at the top and bottom when expanded
Expand Down
2 changes: 1 addition & 1 deletion pubspec.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name: drag_and_drop_lists
description: A flutter package to allow drag-and-drop reordering of two-level lists.
version: 0.4.1
version: 0.4.2
homepage: https://github.com/philip-brink/DragAndDropLists

environment:
Expand Down

0 comments on commit 0415ce8

Please sign in to comment.