getx icon indicating copy to clipboard operation
getx copied to clipboard

Open screens/snackbars/dialogs/bottomSheets without context, manage states and inject dependencies easily with Get.

Results 440 getx issues
Sort by recently updated
recently updated
newest added

Fix #3214 ## Screenshot(Before) ## Screenshot(After) ## Pre-launch Checklist - [ ] I updated/added relevant documentation (doc comments with `///`). - [ ] I added new tests to check the...

**Describe the bug** There is a garbled character in the Japanese document. **Reproduction code** ```md ### Getの目的 このパッケージの目的は、Routeのナビゲーション、依存オブジェクトと状態の管理のための完全なソリューションを、開発者が外部パッケージに極力依存せずに済むような形で提供し、高度なコード分離性(デカップリング)を実現することです。それを確実なものとするため、Getはあらゆる高レベルおよび低レベルのFlutter APIを取り込んでいます。これによりビューとロジックを切り分けることが容易になり、UIチームにはWidgetの構築に集中してもらい、ビジネスロジック担当チームにはロジックに集中してもらうことができます。Getを使うことでよりクリーンな作業環境を構築することができるのです。 要するに、initState内でメソッドを呼び出してパラメーターを通じてControllerにデータを送信する必要も、そのためにControllerのコンストラクタを使用する必要もありません。Getには必要なタイミングでサービスを呼び出してくれう onInit() メソッドがあります。 Controllerが不要になれば、onClose() メソッドがジャストなタイミングでメモリから破棄してくれます。これにより、ビューとビジネスロジックを分離することができるのです。 GetxController 内に dispose() メソッドがあっても何も起こらないので記述しないでください。ControllerはWidgetではないので「dispose」できません。たとえばController内でStreamを使用していてそれを閉じたい場合は、以下のように onClose() メソッドにコードを記述してください。...

Hello, when I launch the application in the mobile browser, it redirects me to multiple pages. After that, when I click the refresh button in the browser, and then click...

*Replace this paragraph with a description of what this PR is changing or adding, and why. Consider including before/after screenshots.* Every PR must update the corresponding documentation in the `code`,...

I use getX in my project, when changing theme, it doesn't work. Here is my code: From dialog choose theme: ``` onConfirm: () { SPUtils.to.saveTheme(theme: currentTheme); Get.changeTheme(AppTheme.keys[currentTheme]!); Navigator.pop(Get.overlayContext!, true); });...

I fixed the typo in Korean translation version README.md As-Is: "스택바", it means stackbar To-Be: "스낵바", it means snackbar *Replace this paragraph with a description of what this PR is...

The much needed restorationScopeId which is available on MaterialApp is not available on GetMaterialApp

i have a linearprogressindicator to show the progress of uploading a file in my app. ![image](https://user-images.githubusercontent.com/31173853/209930859-fda645ff-e3e3-4f5f-b411-b7633055a78d.png) i've tried to log the value inside my function. turns out Obx widget only...

Refresh is protected, and update checks the hashCode. However, if there are some complex arrays in an object, it is rare to override hashCode, and it is also troublesome to...

**ATTENTION: DO NOT USE THIS FIELD TO ASK SUPPORT QUESTIONS. USE THE PLATFORM CHANNELS FOR THIS. THIS SPACE IS DEDICATED ONLY FOR FEATURE REQUESTS** **Is your feature request related to...