Skip to content

Commit 79fbd37

Browse files
committed
fix: fit parameter is invalid (#708)
1 parent e8e5923 commit 79fbd37

File tree

3 files changed

+4
-3
lines changed

3 files changed

+4
-3
lines changed

CHANGELOG.md

+2-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
1-
## Next
1+
## 3.3.1+1
22
- fix: Increase the priority of ClassicIndicator.pullIconBuilder [#674](https://github.com/xuelongqy/flutter_easy_refresh/issues/674).
3+
- fix: fit parameter is invalid [#708](https://github.com/xuelongqy/flutter_easy_refresh/issues/708).
34

45
## 3.3.1
56
- fix: Avoid an endless loop caused by multiple ListViews nested, Thanks LinXunFeng for [PR#681](https://github.com/xuelongqy/flutter_easy_refresh/pull/681).

lib/src/easy_refresh.dart

+1-1
Original file line numberDiff line numberDiff line change
@@ -648,7 +648,7 @@ class _EasyRefreshState extends State<EasyRefresh>
648648
clipBehavior: widget.clipBehavior,
649649
child: Stack(
650650
clipBehavior: Clip.none,
651-
fit: StackFit.loose,
651+
fit: widget.fit,
652652
children: children,
653653
),
654654
);

pubspec.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
name: easy_refresh
22
description: A flutter widget that provides pull-down refresh and pull-up load.
3-
version: 3.3.1
3+
version: 3.3.1+1
44
homepage: https://xuelongqy.github.io/flutter_easy_refresh
55
repository: https://github.com/xuelongqy/flutter_easy_refresh
66
issue_tracker: https://github.com/xuelongqy/flutter_easy_refresh/issues

0 commit comments

Comments
 (0)