All Questions
7 questions
1
vote
1
answer
156
views
Firebase Cloud Functions to write to Firestore when creating a FirebaseAuth user
TLDR
How can I create a user in FirebaseAuth and then automatically write a user document to Firestore 1) without running the risk that an unfortunately timed network error on the frontend leading to ...
2
votes
0
answers
308
views
Unhandled Exception: [firebase_functions/internal] INTERNAL
I've a Flutter App Project which contains levels of permission, so, my main objective with this is allow an manager delete a user, making him not allowed anymore to login, deleting from FirebaseAuth.
...
0
votes
1
answer
349
views
Flutter - user model is NULL even after binding it using bindStream
I am trying to add a shopping cart functionality to my app wherein the UserModel contains fields name,email,uid and cart. I have created an AuthController extends GetxController where I have created ...
0
votes
1
answer
2k
views
get user details after signing in with google using firebase & flutter
I am trying to get the user details after the user signs with google using firebase in flutter. here is code I have and it successfully signs the user in, but when I access the details it gives me ...
0
votes
0
answers
140
views
flutter making authenticated api requests
I am trying to do something along these lines to make an authenticated api request:
Future<http.Response> fetchAlbum() {
return http.get(
'https://jsonplaceholder.typicode.com/albums/1',
...
1
vote
1
answer
2k
views
How to delete a firebase user from Flutter app? [duplicate]
I have a admin app (Flutter app) . I want to delete a firebase user by UID or Email address from my admin app.
Or Automatically in the Firebase a function that will delete the firebase user after n ...
3
votes
2
answers
1k
views
What can be the reason for getting this log output - Lost connection to device - when executing flutter run?
Why is the device getting disconnected with the log stating - Lost connection to device - after
excuting flutter run?
Everything works fine till the login
screen, where the user is able to ...