Skip to content

Commit

Permalink
fix: fit parameter is invalid (#708)
Browse files Browse the repository at this point in the history
  • Loading branch information
xuelongqy committed Apr 14, 2023
1 parent e8e5923 commit 79fbd37
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 3 deletions.
3 changes: 2 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
## Next
## 3.3.1+1
- fix: Increase the priority of ClassicIndicator.pullIconBuilder [#674](https://github.com/xuelongqy/flutter_easy_refresh/issues/674).
- fix: fit parameter is invalid [#708](https://github.com/xuelongqy/flutter_easy_refresh/issues/708).

## 3.3.1
- fix: Avoid an endless loop caused by multiple ListViews nested, Thanks LinXunFeng for [PR#681](https://github.com/xuelongqy/flutter_easy_refresh/pull/681).
Expand Down
2 changes: 1 addition & 1 deletion lib/src/easy_refresh.dart
Original file line number Diff line number Diff line change
Expand Up @@ -648,7 +648,7 @@ class _EasyRefreshState extends State<EasyRefresh>
clipBehavior: widget.clipBehavior,
child: Stack(
clipBehavior: Clip.none,
fit: StackFit.loose,
fit: widget.fit,
children: children,
),
);
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: easy_refresh
description: A flutter widget that provides pull-down refresh and pull-up load.
version: 3.3.1
version: 3.3.1+1
homepage: https://xuelongqy.github.io/flutter_easy_refresh
repository: https://github.com/xuelongqy/flutter_easy_refresh
issue_tracker: https://github.com/xuelongqy/flutter_easy_refresh/issues
Expand Down

0 comments on commit 79fbd37

Please sign in to comment.