diff --git a/CHANGELOG.md b/CHANGELOG.md index 1fedaaf..987247d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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). diff --git a/example/lib/page/style/bezier_page.dart b/example/lib/page/style/bezier_page.dart index 1cf4e84..68adfeb 100644 --- a/example/lib/page/style/bezier_page.dart +++ b/example/lib/page/style/bezier_page.dart @@ -432,7 +432,10 @@ class _BezierPageState extends State { 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: () { diff --git a/example/pubspec.yaml b/example/pubspec.yaml index f34e796..3ffac77 100644 --- a/example/pubspec.yaml +++ b/example/pubspec.yaml @@ -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" @@ -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 diff --git a/pubspec.yaml b/pubspec.yaml index 20b1199..d984b84 100644 --- a/pubspec.yaml +++ b/pubspec.yaml @@ -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