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-09-09 19:09:48 -0300
Browse Files
Options
Browse Files
Download
Email Patches
Plain Diff
Commit
351d82610f997992b6a565e580001cd2952ee714
351d8261
1 parent
03da41f7
update to Getx 3.10.1
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
9 additions
and
5 deletions
CHANGELOG.md
example/pubspec.lock
lib/src/core/get_interface.dart
lib/src/state_manager/rx/rx_workers/rx_workers.dart
pubspec.yaml
CHANGELOG.md
View file @
351d826
## [3.10.1]
-
Fix analyzer
## [3.10.0]
Getx 3.10 released with CLI and Get Server.
-
Added: analyser + effective dart (@Grohden)
...
...
@@ -13,7 +16,8 @@ Getx 3.10 released with CLI and Get Server.
-
Added _RxImp.nil() to easily set the value to null (@roipeker)
-
Added missing docs to Rx classes. (@roipeker)
-
Added Get.delete(force:false) to Get extensions (@roipeker)
-
Improvement Docs (@nipodemos)
-
Added Docs and comments (@nipodemos)
-
Added docs to PT-br and fix typos (@eduardoflorence)
-
Cleanup route code (@justkawal)
-
Extension to facilitate insert widgets inside a CustomScrollView (@alexkharech)
-
Fix docs .obs examples (@kai-oswald)
...
...
example/pubspec.lock
View file @
351d826
...
...
@@ -73,7 +73,7 @@ packages:
path: ".."
relative: true
source: path
version: "3.10.
0
"
version: "3.10.
1
"
http_parser:
dependency: transitive
description:
...
...
lib/src/core/get_interface.dart
View file @
351d826
...
...
@@ -29,7 +29,7 @@ abstract class GetInterface {
bool
defaultGlobalState
=
true
;
RouteSettings
settings
;
String
defaultSeparator
=
"_"
;
String
defaultSeparator
=
'_'
;
final
routing
=
Routing
();
...
...
lib/src/state_manager/rx/rx_workers/rx_workers.dart
View file @
351d826
...
...
@@ -136,7 +136,7 @@ Worker interval<T>(RxInterface<T> listener, Function(T) callback,
debounceActive
=
false
;
callback
(
event
);
});
return
Worker
(
sub
?
.
cancel
,
'[interval]'
);
return
Worker
(
sub
.
cancel
,
'[interval]'
);
}
/// [debounce] is similar to [interval], but sends the last value.
...
...
pubspec.yaml
View file @
351d826
name
:
get
description
:
Open screens/snackbars/dialogs/bottomSheets without context, manage states and inject dependencies easily with GetX.
version
:
3.10.
0
version
:
3.10.
1
homepage
:
https://github.com/jonataslaw/get
environment
:
...
...
Please
register
or
login
to post a comment