Skip to content

Commit

Permalink
Version 3.2.0
Browse files Browse the repository at this point in the history
  • Loading branch information
caduandrade committed Jun 13, 2024
1 parent ea6f6b8 commit 1213cab
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
3 changes: 2 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,8 @@
## 3.2.0

* `Area`
* Adding `id` to be used as an internal Key and facilitating reconfiguration of the layout while maintaining the state of the widgets.
* Adding `id` to be used as an internal Key and facilitating reconfiguration of the layout while maintaining the state of the widgets.
* Avoiding rebuilding areas when hovering over the divider.

## 3.1.0

Expand Down
2 changes: 1 addition & 1 deletion example/pubspec.lock
Original file line number Diff line number Diff line change
Expand Up @@ -129,7 +129,7 @@ packages:
path: ".."
relative: true
source: path
version: "3.1.0"
version: "3.2.0"
path:
dependency: transitive
description:
Expand Down
2 changes: 1 addition & 1 deletion lib/src/controller.dart
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ class MultiSplitViewController extends ChangeNotifier {
int index = 0;
for (Area area in _areas) {
if (!ids.add(area.id)) {
throw StateError('Area with duplicate id.');
throw StateError('Duplicate area id.');
}
AreaHelper.setIndex(area: area, index: index);
if (area.flex != null) {
Expand Down
1 change: 0 additions & 1 deletion lib/src/multi_split_view.dart
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
import 'package:flutter/foundation.dart';
import 'package:flutter/material.dart';
import 'package:flutter/widgets.dart';
import 'package:multi_split_view/src/area.dart';
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: multi_split_view
description: Provides horizontal or vertical multiple split view for Flutter.
version: 3.1.0
version: 3.2.0
repository: https://github.com/caduandrade/multi_split_view

screenshots:
Expand Down

0 comments on commit 1213cab

Please sign in to comment.