Skip to content

Commit

Permalink
Fixes bdlukaa#88
Browse files Browse the repository at this point in the history
  • Loading branch information
bdlukaa committed Nov 11, 2021
1 parent bf9baa0 commit 9e17b83
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ Date format: DD/MM/YYYY

- `ContentDialog` constraints can now be customizable ([#86](https://github.com/bdlukaa/fluent_ui/issues/86))
- Add possibility to disable acrylic by wrapping it in a `DisableAcrylic` ([#89](https://github.com/bdlukaa/fluent_ui/issues/89))
- Fix `onReaorder null exception` ([#88](https://github.com/bdlukaa/fluent_ui/issues/88))

## [3.4.0] - Flexibility - [22/10/2021]

Expand Down
4 changes: 3 additions & 1 deletion lib/src/controls/navigation/tab_view.dart
Original file line number Diff line number Diff line change
Expand Up @@ -200,7 +200,9 @@ class TabView extends StatelessWidget {
buildDefaultDragHandles: false,
shrinkWrap: true,
scrollDirection: Axis.horizontal,
onReorder: onReorder!,
onReorder: (i, ii) {
onReorder?.call(i, ii);
},
itemCount: tabs.length,
proxyDecorator: (child, index, animation) {
return child;
Expand Down

0 comments on commit 9e17b83

Please sign in to comment.