starter_architecture_flutter_firebase
starter_architecture_flutter_firebase copied to clipboard
Time Tracking app with Flutter & Firebase
By calling the `runApp` twice we can show our custom loading widget while the app is being initialized in the `main' with the benefits of supporting Deep Links as: ```dart...
https://github.com/bizz84/starter_architecture_flutter_firebase/blob/6ad66f363e3fe956d1371cdcf9fe7df569066609/lib/src/app_startup.dart#L39 With the current code, when I tap the Retry button, no UI change occurs when the provider is invalidated (the UI stays on the error screen and does not...
@bizz84 I am planning to use this starter project. But i am using my own server for OTP login and authorization. Can this project be used without firebase auth module?
For more details: https://github.com/lucavenir/go_router_riverpod
In `firebase_auth_repository.dart`, `authRepository` watch `firebaseAuthProvider`. ```dart @Riverpod(keepAlive: true) FirebaseAuth firebaseAuth(FirebaseAuthRef ref) { return FirebaseAuth.instance; } @Riverpod(keepAlive: true) AuthRepository authRepository(AuthRepositoryRef ref) { return AuthRepository(ref.watch(firebaseAuthProvider)); } ``` Llistening to `FirebaseAuth.instance` using `ref.watch`....
I have a basic user and admin user, admin can see more screens. The role is defined on the user model, but can also be defined on custom claims. Any...
Is there any way to include search for Jobs over the provider?
Follow up from #118