Showing
5 changed files
with
7 additions
and
4 deletions
1 | +## [4.3.8] | ||
2 | +- Fix nav2 toNamed remove the route | ||
3 | + | ||
1 | ## [4.3.7] | 4 | ## [4.3.7] |
2 | - Fix wrong currentRoute when a route is removed | 5 | - Fix wrong currentRoute when a route is removed |
3 | - Remove take that limits the router outlet depth (@steven-spiel) | 6 | - Remove take that limits the router outlet depth (@steven-spiel) |
@@ -383,6 +383,6 @@ extension BoolExtension on bool { | @@ -383,6 +383,6 @@ extension BoolExtension on bool { | ||
383 | } | 383 | } |
384 | 384 | ||
385 | extension RxT<T> on T { | 385 | extension RxT<T> on T { |
386 | - /// Returns a `Rx` instace with [this] `T` as initial value. | 386 | + /// Returns a `Rx` instance with [this] `T` as initial value. |
387 | Rx<T> get obs => Rx<T>(this); | 387 | Rx<T> get obs => Rx<T>(this); |
388 | } | 388 | } |
@@ -127,7 +127,7 @@ extension ListExtension<E> on List<E> { | @@ -127,7 +127,7 @@ extension ListExtension<E> on List<E> { | ||
127 | // if (item != null) addAll(item); | 127 | // if (item != null) addAll(item); |
128 | // } | 128 | // } |
129 | 129 | ||
130 | - /// Add [item] to [List<E>] only if [condition] is true. | 130 | + /// Add [item] to List<E> only if [condition] is true. |
131 | void addIf(dynamic condition, E item) { | 131 | void addIf(dynamic condition, E item) { |
132 | if (condition is Condition) condition = condition(); | 132 | if (condition is Condition) condition = condition(); |
133 | if (condition is bool && condition) add(item); | 133 | if (condition is bool && condition) add(item); |
1 | import '../get_utils/get_utils.dart'; | 1 | import '../get_utils/get_utils.dart'; |
2 | 2 | ||
3 | -extension GetDynamicUtils<T> on T { | 3 | +extension GetDynamicUtils on dynamic { |
4 | @Deprecated('isNull is deprecated and cannot be used, use "==" operator') | 4 | @Deprecated('isNull is deprecated and cannot be used, use "==" operator') |
5 | bool get isNull => GetUtils.isNull(this); | 5 | bool get isNull => GetUtils.isNull(this); |
6 | 6 |
1 | name: get | 1 | name: get |
2 | description: Open screens/snackbars/dialogs without context, manage states and inject dependencies easily with GetX. | 2 | description: Open screens/snackbars/dialogs without context, manage states and inject dependencies easily with GetX. |
3 | -version: 4.3.7 | 3 | +version: 4.3.8 |
4 | homepage: https://github.com/jonataslaw/getx | 4 | homepage: https://github.com/jonataslaw/getx |
5 | 5 | ||
6 | environment: | 6 | environment: |
-
Please register or login to post a comment