instance_manager library
Get Instance Manager is a modern and intelligent dependency injector that injects and removes dependencies seasonally.
Classes
- Bindings
-
Bindings should be extended or implemented.
When using
GetMaterialApp
, allGetPage
s and navigation methods (like Get.to()) have abinding
property that takes an instance of Bindings to manage the dependencies() (via Get.put()) for the Route you are opening. -
BindingsInterface<
T> -
Defines a contract for classes that provide dependencies for a specific type
T
. - Engine
- A utility class for accessing the engine instance.
- GetInterface
- A contract defining the interface for interacting with the "Get" class, enabling auxiliary packages to extend its functionality through extensions.
- GetxService
- Unlike GetxController, which serves to control events on each of its pages, GetxService is not automatically disposed (nor can be removed with Get.delete()). It is ideal for situations where, once started, that service will remain in memory, such as Auth control for example. Only way to remove it is Get.reset().
- InstanceInfo
- A class that holds information about an instance.
Enums
- SmartManagement
- GetX by default disposes unused controllers from memory, Through different behaviors. SmartManagement.full SmartManagement.full is the default one. Dispose classes that are not being used and were not set to be permanent. In the majority of the cases you will want to keep this config untouched. If you new to GetX then don't change this. SmartManagement.onlyBuilder only controllers started in init: or loaded into a Binding with Get.lazyPut() will be disposed. If you use Get.put() or Get.putAsync() or any other approach, SmartManagement will not have permissions to exclude this dependency. With the default behavior, even widgets instantiated with "Get.put" will be removed, unlike SmartManagement.onlyBuilders. SmartManagement.keepFactoryJust like SmartManagement.full, it will remove it's dependencies when it's not being used anymore. However, it will keep their factory, which means it will recreate the dependency if you need that instance again.
Mixins
- GetLifeCycleMixin
-
The
GetLifeCycle
- GetxServiceMixin
- Allow track difference between GetxServices and GetxControllers
Extensions
- Inst on GetInterface
- ResetInstance on GetInterface
- Extension on GetInterface providing a method to reset all registered instances.
Properties
- Get → _GetImpl
-
Global instance of GetX controller.
final
Functions
-
ambiguate<
T> (T? value) → T? -
Allows a value of type
T
orT?
to be treated as a value of typeT?
. -
defaultLogWriterCallback(
String value, {bool isError = false}) → void - The default logger function used by GetX for writing logs.
Typedefs
-
AsyncInstanceBuilderCallback<
S> = Future< S> Function() -
A callback function used to asynchronously construct instances of type
S
. - BindingBuilderCallback = void Function()
- Defines the signature for a callback used to build bindings.
-
InstanceBuilderCallback<
S> = S Function() -
A callback function used to construct instances of type
S
. -
InstanceCreateBuilderCallback<
S> = S Function(BuildContext _) -
A callback function used to construct instances of type
S
with access to the currentBuildContext
. - LogWriterCallback = void Function(String text, {bool isError})
- A typedef representing a callback function for writing logs, typically used in the context of GetX.
-
ValueUpdater<
T> = T Function() - A function type representing a value updater.