Skip to content

Commit

Permalink
release: 3.3.4
Browse files Browse the repository at this point in the history
  • Loading branch information
xuelongqy committed Dec 29, 2023
1 parent b2b5eaa commit 792198b
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 6 deletions.
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
## Next
## 3.3.4
- fix: EasyPaging.itemBuilder type inference [#762](https://github.com/xuelongqy/flutter_easy_refresh/issues/762).
- fix: Event notification after dispose [#726](https://github.com/xuelongqy/flutter_easy_refresh/issues/726).
- fix: Using refreshOnStart, onRefresh may not be triggered [#789](https://github.com/xuelongqy/flutter_easy_refresh/issues/789).
Expand Down
5 changes: 4 additions & 1 deletion example/lib/page/style/bezier_page.dart
Original file line number Diff line number Diff line change
Expand Up @@ -432,7 +432,10 @@ class _BezierPageState extends State<BezierPage> {
Padding(
padding: EdgeInsets.only(
right: 8,
bottom: GetPlatform.isDesktop || GetPlatform.isWeb ? 8 : 0),
bottom: GetPlatform.isDesktop ||
GetPlatform.isWeb
? 8
: 0),
child: RawChip(
label: Text(spin),
onPressed: () {
Expand Down
6 changes: 3 additions & 3 deletions example/pubspec.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ description: EasyRefresh example.
# Both the version and the builder number may be overridden in flutter
# build by specifying --build-name and --build-number, respectively.
# Read more about versioning at semver.org.
version: 3.3.3+56
version: 3.3.4+57

environment:
sdk: ">=2.17.0 <4.0.0"
Expand All @@ -23,11 +23,11 @@ dependencies:

url_launcher: ^6.2.2
flutter_spinkit: ^5.2.0
extended_nested_scroll_view: ^6.1.2
extended_nested_scroll_view: ^6.2.1
get: ^4.6.6
convert: ^3.1.1
carousel_slider: ^4.2.1
rive: ^0.12.3
rive: ^0.12.4
qr_flutter: ^4.1.0
flutter_svg: ^2.0.9
flutter_sticky_header: ^0.6.5
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.3+1
version: 3.3.4
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 792198b

Please sign in to comment.