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
2021-02-12 22:13:09 -0300
Browse Files
Options
Browse Files
Download
Email Patches
Plain Diff
Commit
c300f03290fcb894d0aec7ad7ebdafa0362d53b5
c300f032
1 parent
a6635026
update to 3.25.2
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
18 additions
and
2 deletions
CHANGELOG.md
lib/get_rx/src/rx_workers/rx_workers.dart
pubspec.yaml
CHANGELOG.md
View file @
c300f03
## [3.25.1] - Big update
## [3.25.2]
-
Improved Workers system to accept a list of works
## [3.25.1]
-
Improved the log system to display the tag used in the controller that was created.
## [3.25.0] - Big update
...
...
lib/get_rx/src/rx_workers/rx_workers.dart
View file @
c300f03
...
...
@@ -13,6 +13,19 @@ bool _conditional(dynamic condition) {
typedef
WorkerCallback
<
T
>
=
Function
(
T
callback
);
class
Workers
{
Workers
(
this
.
workers
);
final
List
<
Worker
>
workers
;
void
dispose
()
{
for
(
final
worker
in
workers
)
{
if
(!
worker
.
_disposed
)
{
worker
.
dispose
();
}
}
}
}
///
/// Called every time [listener] changes. As long as the [condition]
/// returns true.
...
...
pubspec.yaml
View file @
c300f03
name
:
get
description
:
Open screens/snackbars/dialogs without context, manage states and inject dependencies easily with GetX.
version
:
3.25.
1
version
:
3.25.
2
homepage
:
https://github.com/jonataslaw/getx
environment
:
...
...
Please
register
or
login
to post a comment