Skip to content

Commit

Permalink
Release 1.2.1
Browse files Browse the repository at this point in the history
  • Loading branch information
Cong Nguyen committed Feb 12, 2023
1 parent 9c168d3 commit 07cee64
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 4 deletions.
3 changes: 2 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
## 1.2.1
Reverse
Fix bug

## 1.2.0
* Update new flutter SDK version to 3.7 and fix warning from analyze
* BREAKING CHANGE:
Expand Down
4 changes: 2 additions & 2 deletions example/pubspec.lock
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ packages:
path: ".."
relative: true
source: path
version: "1.1.9"
version: "1.2.1"
fake_async:
dependency: transitive
description:
Expand Down Expand Up @@ -192,5 +192,5 @@ packages:
source: hosted
version: "2.1.4"
sdks:
dart: ">=2.18.5 <4.0.0"
dart: ">=2.18.5 <3.0.0"
flutter: ">=1.17.0"
3 changes: 2 additions & 1 deletion lib/src/core/expansion_tile_custom.dart
Original file line number Diff line number Diff line change
Expand Up @@ -394,7 +394,8 @@ class ExpansionTileCustomState extends State<ExpansionTileCustom>
_controller.drive(_backgroundColorTween.chain(_easeOutTween));

if (widget.isEnableExpanded) {
_isExpanded = PageStorage.of(context).readState(context);
_isExpanded = PageStorage.of(context).readState(context) ??
widget.initiallyExpanded;
}

if (_isExpanded) {
Expand Down

0 comments on commit 07cee64

Please sign in to comment.