getx
getx copied to clipboard
Open screens/snackbars/dialogs/bottomSheets without context, manage states and inject dependencies easily with Get.
```dart Get.updateLocale(Locale('pt', 'BR')) ``` Because I have such a scenario now, after calling this function, I need to re-request information from the network, so that the correct text interface can...
leak fix
class GetPageRoute extends PageRoute with GetPageRouteTransitionMixin, PageRouteReportMixin { @override void dispose() { super.dispose(); final middlewareRunner = MiddlewareRunner(middlewares); middlewareRunner.runOnPageDispose(); /// there need to release the _child _child = null; } }
``` class DrawerSideMenu extends GetView { const DrawerSideMenu({Key? key}) : super(key: key); @override Widget build(BuildContext context) { return Text(controller.title) // shows error : The getter 'title' isn't defined for the...
*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`,...
### Discussed in https://github.com/jonataslaw/getx/discussions/2190 Originally posted by **rooque** February 14, 2022 Hello 👋 Does anyone know if using Get.to() with custom transition is possible? 🤔 If it's possible, please provide...
Hello, I use Getx to get articles from Wordpress. I display the list of articles correctly via a ListPage calling a controller ListController. I can click on an item in...
A page has a button that uses `Get.back()` to close the current page and show the previous page. If this page is the first page, this `Get.back()` will not work(It...
**Describe the bug** I want to know how to reset the value of GetxController to its initial value. I found that I could not use the Get.reload() function to achieve...
**Description of the bug** I am using `get: 5.0.0 beta.51` version and it is overriding my `WillPopScope` widget commands and also when user presses the device back button it simply...
I have attached a zip file that contains an app to reproduce this problem. There appears to be a problem with Get.defaultDialog when called from a secondary screen (ie. not...