We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d854206 commit 68b47f1Copy full SHA for 68b47f1
lib/lit_firebase_auth.dart
@@ -1,5 +1,6 @@
1
export 'src/domain/auth/auth_providers.dart';
2
export 'src/domain/auth/i_auth_facade.dart';
3
+export 'src/domain/auth/user.dart';
4
export 'src/infrastructure/firebase_auth_facade.dart';
5
export 'src/presentation/core/auth_config.dart';
6
export 'src/presentation/core/extensions.dart';
lib/src/presentation/core/extensions.dart
@@ -110,4 +110,8 @@ extension AuthContext on BuildContext {
110
User getSignedInUser() {
111
return Provider.of<User>(this, listen: false);
112
}
113
+
114
+ User watchSignedInUser() {
115
+ return Provider.of<User>(this);
116
+ }
117
0 commit comments