Please do the phone otp authentication for sign up.. And please extend the video with user profile page at least.. It will be very helpful.. Your teaching style is awesome.. So I found quite easy to follow your tutorials.. Thank you 😊👌👍❤
at 2:40 u didn't told that how we can get our Sha1 number from command prompt and there are a lot of segments in your video where i don't understand how did u do the thing...if u are making a tutorial and giving time on it, try to cover everything u can ,dont dodge the things sorry but ur tutorials are incomplete 😉
Hello bro there is one problem i got "Bottom overloaded by 37 pixels so what to do now? And please make one tutorial on interactive databse values stored for this app. Please 😶👍🏼👍🏼
I think that in this tutorial, there are changes of syntax and while following this steps, I am encountering now a problem. in the 24:00 minutes of the video, this is my code which is I change the FirebaseUser into User because it is depracated. Also the AuthResult into UserCredential. onPressed: ()async { User firebaseUser; firebaseAuth.signInWithEmailAndPassword(email: 'demo@gmail.com', password: 'demo123').then((UserCredential){}); setState(() { firebaseUser =UserCredential as User; }); print(firebaseUser.email); Navigator.push(context, MaterialPageRoute(builder: (_)=>CrudScreen())); }, There are two problems with this. The code will run and there are no red marks in the code but when I run it, in the terminal. This error message displays. I/BiChannelGoogleApi(15464): [FirebaseAuth: ] getGoogleApiForMethod() returned Gms: com.google.firebase.auth.api.internal.zzao@8e6dbde D/FirebaseAuth(15464): Notifying id token listeners about user ( 4uecIYMJ7BPjiBBlr4XxV6FHgxh1 ). When I presssed log in, it doesn't go to my CrudScreen.. I hope someone will help me. I really want to learn from this tutorial. I am stuck because of this.