Jonny Borges
Jonny Borges
According to the error, you declared the type in your dependency injection as a **Nullable**. `Get.find()` will get exactly the type you determined, which means you cannot declare variables as...
There is no Get.context before GetMaterialApp. runApp will build your widget three, so, create the context of each widget. it is not possible to use context before runApp.
Get.arguments should be available in the redirect. Are you using the version 4 or 5?
Hi, I believe there is no memory leak problem in your description, you created a final static variable, it behaves like this. I think perhaps what you intended to do...
Related to https://github.com/flutter/flutter/issues/138614
GetX navigation is what allows you to remove controllers when a page leaves the stack. You basically have two ways to do this: 1: use GetBuilder to inject your controllers....
> Now Get.close() no longer returns a certain number of pages in the stack. How should we roll back several pages in get5, A>B>C>D>E, and how to go back to...
> There is a nice syntax in riverpod. Is it available in getx5 getbuilder? > > ``` > final boredSuggestion = ref.watch(boredSuggestionProvider); > // Perform a switch-case on the result...
> Is it convenient to ask the specific release date of getx5? I am very much looking forward to it and using it in the project,After the release of getx5,...
Are you using nested navigation? Are you initializing the code using GetBuilder?