Toggle navigation
Toggle navigation
This project
Loading...
Sign in
flutter_package
/
fluttertpc_get
Go to a project
Toggle navigation
Projects
Groups
Snippets
Help
Toggle navigation pinning
Project
Activity
Repository
Pipelines
Graphs
Issues
0
Merge Requests
0
Wiki
Network
Create a new issue
Builds
Commits
Authored by
Jonny Borges
2021-07-21 18:16:18 -0300
Browse Files
Options
Browse Files
Download
Email Patches
Plain Diff
Commit
adfea18cf8822e55dcdbf526bb337f8b6236d115
adfea18c
1 parent
4bb961ce
update to 4.2.4
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
15 additions
and
1 deletions
CHANGELOG.md
lib/get_instance/src/get_instance.dart
pubspec.yaml
CHANGELOG.md
View file @
adfea18
## [4.2.4]
-
Fix Get.offAll removing GetxServices from memory
## [4.2.3]
-
Fix back button on navigator 2
-
Added parameters and arguments to Get.rootDelegate
...
...
lib/get_instance/src/get_instance.dart
View file @
adfea18
...
...
@@ -473,6 +473,17 @@ class GetInstance {
return
;
}
final
i
=
builder
.
dependency
;
if
(
i
is
GetxServiceMixin
&&
!
force
)
{
return
;
}
if
(
i
is
GetLifeCycleBase
)
{
i
.
onDelete
();
Get
.
log
(
'"
$newKey
" onDelete() called'
);
}
builder
.
dependency
=
null
;
builder
.
isInit
=
false
;
Get
.
log
(
'Instance "
$newKey
" was restarted.'
);
...
...
pubspec.yaml
View file @
adfea18
name
:
get
description
:
Open screens/snackbars/dialogs without context, manage states and inject dependencies easily with GetX.
version
:
4.2.
3
version
:
4.2.
4
homepage
:
https://github.com/jonataslaw/getx
environment
:
...
...
Please
register
or
login
to post a comment