Jonny Borges
Committed by GitHub

update to 3.4.6

  1 +## [3.4.6]
  2 +- Fix TextField dispose throw on last Flutter hotfix
  3 +
1 ## [3.4.5] 4 ## [3.4.5]
2 - Fix typo on RxList.remove that could cause type errors. 5 - Fix typo on RxList.remove that could cause type errors.
3 - Remove initialization console print 6 - Remove initialization console print
@@ -388,10 +388,11 @@ class GetPageRoute<T> extends PageRoute<T> { @@ -388,10 +388,11 @@ class GetPageRoute<T> extends PageRoute<T> {
388 388
389 @override 389 @override
390 void dispose() { 390 void dispose() {
391 - super.dispose();  
392 if (GetConfig.smartManagement != SmartManagement.onlyBuilder) { 391 if (GetConfig.smartManagement != SmartManagement.onlyBuilder) {
393 - GetInstance().removeDependencyByRoute("${settings.name}"); 392 + WidgetsBinding.instance.addPostFrameCallback(
  393 + (_) => GetInstance().removeDependencyByRoute("${settings.name}"));
394 } 394 }
  395 + super.dispose();
395 } 396 }
396 } 397 }
397 398
1 name: get 1 name: get
2 description: Open screens/snackbars/dialogs/bottomSheets without context, manage states and inject dependencies easily with GetX. 2 description: Open screens/snackbars/dialogs/bottomSheets without context, manage states and inject dependencies easily with GetX.
3 -version: 3.4.5 3 +version: 3.4.6
4 homepage: https://github.com/jonataslaw/get 4 homepage: https://github.com/jonataslaw/get
5 5
6 environment: 6 environment: