Jonny Borges

update to 4.3.8

## [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)
... ...
... ... @@ -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` instance with [this] `T` as initial value.
Rx<T> get obs => Rx<T>(this);
}
... ...
... ... @@ -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);
... ...
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);
... ...
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:
... ...