getx
getx copied to clipboard
[5.0.0-release-candidate-6] Kindly push the latest commits and release for pub.dev
People are waiting and the latest pull request is workign as well.
Need this urgent
Maybe the author is busy fixing it. hopefully it will be finished quickly
Updated Solution:
To leverage the latest version, include the following in your pubspec.yaml:
dependencies:
get:
git:
url: https://github.com/Aniketkhote/getx.git
ref: master
This ensures you're using the most recent iteration of GetX, promising optimal functionality. If you encounter any issues, don't hesitate to report them. Special thanks to the significant contributions from the author of 'refreshed'.
it has issue with "Get.back()" within dialog,
https://github.com/jonataslaw/getx/assets/62730238/eaaa936d-ce2f-42e3-a3b5-e1fe71811f80
it has issue with "Get.back()" within dialog,
Screen.Recording.2024-05-20.at.9.48.43.AM.mp4
Use Navigator.pop(context);
Updated Solution:
To leverage the latest version, include the following in your pubspec.yaml:
dependencies: get: git: url: https://github.com/Aniketkhote/getx.git ref: masterThis ensures you're using the most recent iteration of GetX, promising optimal functionality. If you encounter any issues, don't hesitate to report them. Special thanks to the significant contributions from the author of 'refreshed'.
Because get_storage 2.1.1 depends on get >=4.0.0 <6.0.0 and no versions of get_storage match >2.1.1 <3.0.0, get_storage ^2.1.1 requires get from hosted. So, because vinyl depends on both get from git and get_storage ^2.1.1, version solving failed.
If I use get_storage, it give me this error, anyone found the solution ?
it has issue with "Get.back()" within dialog,
Screen.Recording.2024-05-20.at.9.48.43.AM.mp4
do a flutter clean and then try again
I git this error.
'package:get/get_navigation/src/snackbar/snackbar_controller.dart': Failed assertion: line 109 pos 12: '!_transitionCompleter.isCompleted': Cannot configure a snackbar after disposing it.
it has issue with "Get.back()" within dialog, Screen.Recording.2024-05-20.at.9.48.43.AM.mp4
do a flutter clean and then try again
the issue still persist , latest changes seems to have issues [it used to work previously] , and still no reply from the package maintainer which make me think to not use it with my projects anymore , because on each flutter update we gonna face this issues
Use Navigator.pop(context);
this is not the right solution as Get.back(); should work as expected and it is part of the library , no idea if many places are affected but i will not change it in all places
it has issue with "Get.back()" within dialog, Screen.Recording.2024-05-20.at.9.48.43.AM.mp4
Use Navigator.pop(context);
How about Get.close(1);
it has issue with "Get.back()" within dialog,
Screen.Recording.2024-05-20.at.9.48.43.AM.mp4
If you are using getx 5, you need use "close()" to overlays and "back()" to routes.
The latest master is on pub.dev
Thanks so much. Hope this will regain hope in the community who use this package.
On Fri, May 24, 2024, 3:56 PM Jonny Borges @.***> wrote:
The latest master is on pub.dev
— Reply to this email directly, view it on GitHub https://github.com/jonataslaw/getx/issues/3100#issuecomment-2129241312, or unsubscribe https://github.com/notifications/unsubscribe-auth/AIRXJSEVKU3LHYAQ4BMRV43ZD4MEDAVCNFSM6AAAAABH2RSBB2VHI2DSMVQWIX3LMV43OSLTON2WKQ3PNVWWK3TUHMZDCMRZGI2DCMZRGI . You are receiving this because you authored the thread.Message ID: @.***>
it has issue with "Get.back()" within dialog, Screen.Recording.2024-05-20.at.9.48.43.AM.mp4
If you are using getx 5, you need use "close()" to overlays and "back()" to routes.
thank you, didn't know that
NOTE: You can still use Get.back() with the same behavior as in version 4. If you don't want to refactor your project yet to use Get.close() and Get.back(), you can use your favorite editor of you to change all Get.back() in the project to Get.backLegacy().
Muito obrigado. Espero que isso recupere a esperança na comunidade que usa este pacote. … Na sexta-feira, 24 de maio de 2024, 15h56 Jonny Borges @.> escreveu: O master mais recente está em pub.dev - Responda a este e-mail diretamente, visualize-o no GitHub < #3100 (comentário) > ou cancele a assinatura < https://github.com/notifications/unsubscribe-auth/AIRXJSEVKU3LHYAQ4BMRV43ZD4MEDAVCNFSM6AAAAABH2RSBB2VHI2DSMVQWIX3LMV43OSLTON2WKQ3PNVWWK3TUHMZDCMRZGI2DCMZRGI > . Você está recebendo isso porque foi o autor do thread. ID da mensagem: @.>
@fisforfaheem, are you using the new 5.0.0-release-candidate-6 in production ? It's working good?Let us know, please
getting this while using flutter sdk beta version: [beboro] flutter pub get --no-example Resolving dependencies... The current Dart SDK version is 3.4.0-282.3.beta.
Because beboro requires SDK version >=3.4.0 <=4.0.0, version solving failed.
You can try the following suggestion to make the pubspec resolve:
- Try using the Flutter SDK version: 3.22.1. exit code 1
and this is my pubpec.yaml: version: 1.0.0+1 environment: sdk: '>=3.4.0 <=4.0.0' dependencies:
It will work nicely with flutter 3.22.1
getting this while using flutter sdk beta version: [beboro] flutter pub get --no-example Resolving dependencies... The current Dart SDK version is 3.4.0-282.3.beta.
Because beboro requires SDK version >=3.4.0 <=4.0.0, version solving failed.
You can try the following suggestion to make the pubspec resolve:
- Try using the Flutter SDK version: 3.22.1. exit code 1
and this is my pubpec.yaml: version: 1.0.0+1 environment: sdk: '>=3.4.0 <=4.0.0' dependencies:
ANYONE have any idea what should be done?? cuz i dont want to leave fluttersdk beta
I replaced Get.back(result: true) with Get.close(result: true), but the return is false only with Get.backLegacy it works. Does anyone have any ideas?
Is there no update for the stable version (other than the candidate version)?