diff --git a/.DS_Store b/.DS_Store index 9cc182bbc..0d88dba87 100644 Binary files a/.DS_Store and b/.DS_Store differ diff --git a/CHANGELOG.md b/CHANGELOG.md index bbcacb65c..a8e00c415 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,7 @@ +## [5.0.0-release-candidate-6] + +-Fix Snackbar, upgrade to flutter 3.22 @Aniketkhote, improve parse route @korutx, fix popScope @wowbox, improve defaultDialog @leeyi, add support to wasm compilation @Ty, fix typos @CodeWithEmad, fix snackbar cancel @seungsuyoo update GetConnect @DaZealous and @ wheeOs, add bengali language @aratheunseen, fix lint issues: @MuhammamdArslanKhan + ## [5.0.0-release-candidate-5] -Fix nested route issues, fixed issues in the latest flutter version diff --git a/example_nav2/android/local.properties b/example_nav2/android/local.properties index cebbb54d3..79defc581 100644 --- a/example_nav2/android/local.properties +++ b/example_nav2/android/local.properties @@ -1,2 +1,2 @@ -sdk.dir=C:\\Users\\anike\\AppData\\Local\\Android\\sdk -flutter.sdk=C:\\flutter \ No newline at end of file +sdk.dir=/Users/jonatasborges/Library/Android/sdk +flutter.sdk=/Users/jonatasborges/flutter \ No newline at end of file diff --git a/lib/.DS_Store b/lib/.DS_Store new file mode 100644 index 000000000..6de465102 Binary files /dev/null and b/lib/.DS_Store differ diff --git a/lib/get_connect/http/src/http/html/http_request_html.dart b/lib/get_connect/http/src/http/html/http_request_html.dart index 6fbfb8669..6d0c4deef 100644 --- a/lib/get_connect/http/src/http/html/http_request_html.dart +++ b/lib/get_connect/http/src/http/html/http_request_html.dart @@ -53,7 +53,8 @@ class HttpRequestImpl implements IClient { reader.onLoad.first.then((_) async { var bodyBytes = (reader.result as List).toStream(); - if(request.responseInterceptor != null) throw 'response interception not implemented for web yet!'; + if (request.responseInterceptor != null) + throw 'response interception not implemented for web yet!'; /* TODO to be implemented like in http_request_io.dart diff --git a/lib/get_navigation/src/routes/default_transitions.dart b/lib/get_navigation/src/routes/default_transitions.dart index e6cad4a8c..442799418 100644 --- a/lib/get_navigation/src/routes/default_transitions.dart +++ b/lib/get_navigation/src/routes/default_transitions.dart @@ -5,12 +5,13 @@ import 'circular_reveal_clipper.dart'; class LeftToRightFadeTransition { Widget buildTransitions( - BuildContext context, - Curve? curve, - Alignment? alignment, - Animation animation, - Animation secondaryAnimation, - Widget child) { + BuildContext context, + Curve? curve, + Alignment? alignment, + Animation animation, + Animation secondaryAnimation, + Widget child, + ) { return SlideTransition( position: Tween( begin: const Offset(-1.0, 0.0), diff --git a/lib/get_navigation/src/routes/get_transition_mixin.dart b/lib/get_navigation/src/routes/get_transition_mixin.dart index 2d1a909df..03e8c5a9b 100644 --- a/lib/get_navigation/src/routes/get_transition_mixin.dart +++ b/lib/get_navigation/src/routes/get_transition_mixin.dart @@ -116,7 +116,6 @@ class GetBackGestureDetectorState extends State> { ) }, ); - return Stack( fit: StackFit.passthrough, children: [ @@ -361,7 +360,7 @@ Cannot read the previousTitle for a route that has not yet been installed''', Animation animation, Animation secondaryAnimation, Widget child, { - bool limitedSwipe = false, + bool limitedSwipe = true, double initialOffset = 0, }) { // Check if the route has an animation that's currently participating diff --git a/pubspec.yaml b/pubspec.yaml index c83f23bb5..75f800dcf 100644 --- a/pubspec.yaml +++ b/pubspec.yaml @@ -1,6 +1,6 @@ name: get description: Open screens/snackbars/dialogs without context, manage states and inject dependencies easily with GetX. -version: 5.0.0-release-candidate-5 +version: 5.0.0-release-candidate-6 homepage: https://github.com/jonataslaw/getx environment: