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
Jonatas
2020-08-30 15:36:27 -0300
Browse Files
Options
Browse Files
Download
Email Patches
Plain Diff
Commit
3fb9b7a20c3b194e0d06e7260edd9657bf2e2ee3
3fb9b7a2
1 parent
43d2892f
fix onStart called null
Show whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
7 additions
and
2 deletions
CHANGELOG.md
example/pubspec.lock
lib/src/instance/get_instance.dart
pubspec.yaml
CHANGELOG.md
View file @
3fb9b7a
## [3.6.2]
-
Fix more formatting issues
## [3.6.2]
-
Fix more formatting issues
## [3.6.1]
-
Fix formatting issues
...
...
example/pubspec.lock
View file @
3fb9b7a
...
...
@@ -73,7 +73,7 @@ packages:
path: ".."
relative: true
source: path
version: "3.6.
0
"
version: "3.6.
3
"
http_parser:
dependency: transitive
description:
...
...
lib/src/instance/get_instance.dart
View file @
3fb9b7a
...
...
@@ -175,10 +175,12 @@ class GetInstance {
final
key
=
_getKey
(
S
,
tag
);
final
i
=
_singl
[
key
].
getDependency
();
if
(
i
is
DisposableInterface
)
{
if
(
i
.
onStart
!=
null
)
{
i
.
onStart
();
GetConfig
.
log
(
'"
$key
" has been initialized'
);
}
}
}
// S putOrFind<S>(S Function() dep, {String tag}) {
// final key = _getKey(S, tag);
...
...
pubspec.yaml
View file @
3fb9b7a
name
:
get
description
:
Open screens/snackbars/dialogs/bottomSheets without context, manage states and inject dependencies easily with GetX.
version
:
3.6.
2
version
:
3.6.
3
homepage
:
https://github.com/jonataslaw/get
environment
:
...
...
Please
register
or
login
to post a comment