Skip to content

Commit 8eba092

Browse files
committed
1 parent 6d6b8b1 commit 8eba092

2 files changed

Lines changed: 6 additions & 6 deletions

File tree

lib/packages/core/widgets/BaseView_copy.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ import 'package:softi_packages/packages/core/controllers/BaseViewController.dart
55
abstract class IBaseView<T extends IBaseViewController> extends StatelessWidget {
66
IBaseView(T? controller, {super.key, String? tag})
77
: _controller = controller == null //
8-
? Get.find<T>()
8+
? Get.find<T>(tag: tag)
99
: Get.put(controller, tag: tag);
1010

1111
final T _controller;

pubspec.lock

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@ packages:
7777
name: build_runner
7878
url: "https://pub.dartlang.org"
7979
source: hosted
80-
version: "2.2.1"
80+
version: "2.3.0"
8181
build_runner_core:
8282
dependency: transitive
8383
description:
@@ -673,7 +673,7 @@ packages:
673673
name: json_serializable
674674
url: "https://pub.dartlang.org"
675675
source: hosted
676-
version: "6.4.1"
676+
version: "6.5.1"
677677
lints:
678678
dependency: transitive
679679
description:
@@ -799,7 +799,7 @@ packages:
799799
name: photo_manager
800800
url: "https://pub.dartlang.org"
801801
source: hosted
802-
version: "2.3.0"
802+
version: "2.4.0"
803803
platform:
804804
dependency: transitive
805805
description:
@@ -834,7 +834,7 @@ packages:
834834
name: provider
835835
url: "https://pub.dartlang.org"
836836
source: hosted
837-
version: "6.0.3"
837+
version: "6.0.4"
838838
pub_semver:
839839
dependency: transitive
840840
description:
@@ -902,7 +902,7 @@ packages:
902902
name: source_gen
903903
url: "https://pub.dartlang.org"
904904
source: hosted
905-
version: "1.2.5"
905+
version: "1.2.6"
906906
source_helper:
907907
dependency: transitive
908908
description:

0 commit comments

Comments
 (0)