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
4 years ago
Browse Files
Options
Browse Files
Download
Email Patches
Plain Diff
Commit
d67ec4561dce381672ae2d9bdcb45c70fe025e67
d67ec456
1 parent
71387410
update to 4.3.8
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
7 additions
and
4 deletions
CHANGELOG.md
lib/get_rx/src/rx_types/rx_core/rx_impl.dart
lib/get_rx/src/rx_types/rx_iterables/rx_list.dart
lib/get_utils/src/extensions/dynamic_extensions.dart
pubspec.yaml
CHANGELOG.md
View file @
d67ec45
## [4.3.8]
-
Fix nav2 toNamed remove the route
## [4.3.7]
-
Fix wrong currentRoute when a route is removed
-
Remove take that limits the router outlet depth (@steven-spiel)
...
...
lib/get_rx/src/rx_types/rx_core/rx_impl.dart
View file @
d67ec45
...
...
@@ -383,6 +383,6 @@ extension BoolExtension on bool {
}
extension
RxT
<
T
>
on
T
{
/// Returns a `Rx` instace with [this] `T` as initial value.
/// Returns a `Rx` insta
n
ce with [this] `T` as initial value.
Rx
<
T
>
get
obs
=>
Rx
<
T
>(
this
);
}
...
...
lib/get_rx/src/rx_types/rx_iterables/rx_list.dart
View file @
d67ec45
...
...
@@ -127,7 +127,7 @@ extension ListExtension<E> on List<E> {
// if (item != null) addAll(item);
// }
/// Add [item] to
[List<E>]
only if [condition] is true.
/// Add [item] to
List<E>
only if [condition] is true.
void
addIf
(
dynamic
condition
,
E
item
)
{
if
(
condition
is
Condition
)
condition
=
condition
();
if
(
condition
is
bool
&&
condition
)
add
(
item
);
...
...
lib/get_utils/src/extensions/dynamic_extensions.dart
View file @
d67ec45
import
'../get_utils/get_utils.dart'
;
extension
GetDynamicUtils
<
T
>
on
T
{
extension
GetDynamicUtils
on
dynamic
{
@Deprecated
(
'isNull is deprecated and cannot be used, use "==" operator'
)
bool
get
isNull
=>
GetUtils
.
isNull
(
this
);
...
...
pubspec.yaml
View file @
d67ec45
name
:
get
description
:
Open screens/snackbars/dialogs without context, manage states and inject dependencies easily with GetX.
version
:
4.3.
7
version
:
4.3.
8
homepage
:
https://github.com/jonataslaw/getx
environment
:
...
...
Please
register
or
login
to post a comment