You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Added [reload] and [reloadAll] methods to reload your Controller to original values
Added [FullLifeCycleController] - A GetxController capable of observing all the life cycles of your application. FullLifeCycleController has the life cycles:
onInit: called when the controller enters the application's memory
onReady: called after onInit, when build method from widget relationed to controller is done.
onClose: called when controller is deleted from memory.
onPaused: called when the application is not currently visible to the user, and running in the background.
onInactive: called when the application is in an inactive state and is not receiving user input, when the user receives a call, for example
onResumed: The application is now visible and in the foreground
onDetached: The application is still hosted on a flutter engine but is detached from any host views.
didChangeMetrics: called when the window size is changed
Added SuperController, a complete life circle controller with StateMixin
Improve Iterable Rx Api. Now, you can to use dart List, Map and Set as reactive, like: List names = ['juan', 'pedro', 'maria'].obs;
Added assign and assignAll extensions to default dart List
Added parameters options from Get.toNamed, Get.offNamed, and Get.offAllNamed (@enghitalo)
Improve Rx disposal logic to completely prevent memory leaks