Flutter Tutorial - Build Amazing Login UI in Flutter with Firebase Auth | Flutter UI

  Рет қаралды 42,314

The Growing Developer

The Growing Developer

Күн бұрын

Пікірлер: 56
@Ayush-jd5bd
@Ayush-jd5bd 3 жыл бұрын
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 😉
@TheGrowingDeveloper
@TheGrowingDeveloper 3 жыл бұрын
Hi Ayush! Thanks for the feedback. I'll try to be more complete thanks.
@leonardoventocilla3275
@leonardoventocilla3275 4 жыл бұрын
Another great video! Learning lot. Thanks for sharing ..
@TheGrowingDeveloper
@TheGrowingDeveloper 4 жыл бұрын
❤️✌️✌️
@rajithasandeera5857
@rajithasandeera5857 2 жыл бұрын
wow super video
@TheGrowingDeveloper
@TheGrowingDeveloper 2 жыл бұрын
Thanks
@anirudhachakrabarty2050
@anirudhachakrabarty2050 4 жыл бұрын
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 😊👌👍❤
@TheGrowingDeveloper
@TheGrowingDeveloper 4 жыл бұрын
Noted
@user-pm9yi1kt5l
@user-pm9yi1kt5l 4 жыл бұрын
Bro..Make Text Size Bigger of Codeing...it will help in retainng public and easy for us
@TheGrowingDeveloper
@TheGrowingDeveloper 4 жыл бұрын
Noted!
@ibrahimcetin8656
@ibrahimcetin8656 4 жыл бұрын
I love your vids thank you boss
@TheGrowingDeveloper
@TheGrowingDeveloper 4 жыл бұрын
😊❤️
@shubhamgupta-to7so
@shubhamgupta-to7so 4 жыл бұрын
Awesome video... learnt a lot of things. Can you please make a full course on Dart. Thanks in Advance
@TheGrowingDeveloper
@TheGrowingDeveloper 4 жыл бұрын
Soon Shubham 😊
@shubhamgupta-to7so
@shubhamgupta-to7so 4 жыл бұрын
@@TheGrowingDeveloper Great Thanks
@ibadasif4093
@ibadasif4093 3 жыл бұрын
There is a error in my seState command saying there is no method name or defined setState
@TheGrowingDeveloper
@TheGrowingDeveloper 3 жыл бұрын
setState works in stateful widgets
@xaxababa6616
@xaxababa6616 4 жыл бұрын
Is there a reason to use MaterialButton over Flat/Raised Buttons?
@TheGrowingDeveloper
@TheGrowingDeveloper 4 жыл бұрын
Not particularly , but Material Button jyst gives you more control over modifications ✌️
@instcicada
@instcicada 3 жыл бұрын
BEcause it is made up of Material ........ and besides that .....nobody likes FLAT :-D
@instcicada
@instcicada 3 жыл бұрын
lol
@TheAkshay60
@TheAkshay60 4 жыл бұрын
what theme are u using for your android studio and from where I can get it?
@TheGrowingDeveloper
@TheGrowingDeveloper 4 жыл бұрын
I am using MaterialTheme plugin. It's available in the plugin marketplace in android studio
@varunsahni793
@varunsahni793 3 жыл бұрын
Could you include link to the next video in description
@TheGrowingDeveloper
@TheGrowingDeveloper 3 жыл бұрын
Yes I will asap
@OmarRiyati
@OmarRiyati 4 жыл бұрын
thank you is there another video?
@TheGrowingDeveloper
@TheGrowingDeveloper 4 жыл бұрын
Not yet.
@adityasaxena1954
@adityasaxena1954 3 жыл бұрын
hey how did u import that library in login screen pls explain
@TheGrowingDeveloper
@TheGrowingDeveloper 3 жыл бұрын
Auto imports! or you can use alt+enter!
@vedantghate92
@vedantghate92 3 жыл бұрын
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 😶👍🏼👍🏼
@TheGrowingDeveloper
@TheGrowingDeveloper 3 жыл бұрын
Try to wrap it with Expanded or wrap the Column with SingleChildScrollView!
@vedantghate92
@vedantghate92 3 жыл бұрын
@@TheGrowingDeveloper ok both email passwords and sign in with Google right?
@thalesdecarvalho755
@thalesdecarvalho755 4 жыл бұрын
what is your android studio theme?
@TheGrowingDeveloper
@TheGrowingDeveloper 4 жыл бұрын
I am using Material Theme
@usmankhan-wf9mh
@usmankhan-wf9mh 4 жыл бұрын
mine userResult is getting error time: 25:00 in video please guide
@TheGrowingDeveloper
@TheGrowingDeveloper 4 жыл бұрын
Can you share the error here?
@dholasain9805
@dholasain9805 3 жыл бұрын
Where to download this image? used in app
@TheGrowingDeveloper
@TheGrowingDeveloper 3 жыл бұрын
You can use any of the image!!
@bishalmondal4319
@bishalmondal4319 4 жыл бұрын
sir can u share github repo .. share plz github link
@TheGrowingDeveloper
@TheGrowingDeveloper 4 жыл бұрын
The code is available at thegrowingdeveloper.org
@lyleverything1767
@lyleverything1767 3 жыл бұрын
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.
@TheGrowingDeveloper
@TheGrowingDeveloper 3 жыл бұрын
Cross check with the firebase auth plugin for any breaking changes
@seanadith
@seanadith 4 жыл бұрын
The website is not working.
@TheGrowingDeveloper
@TheGrowingDeveloper 4 жыл бұрын
Can you try again?
@wukimus1
@wukimus1 2 жыл бұрын
source code?
@soumyajitmaiti8201
@soumyajitmaiti8201 3 жыл бұрын
Can you please share the source code....
@TheGrowingDeveloper
@TheGrowingDeveloper 3 жыл бұрын
Written Tutorial available on thegrowingdeveloper.org
@2SourceFort
@2SourceFort 3 жыл бұрын
Source code please
@TheGrowingDeveloper
@TheGrowingDeveloper 3 жыл бұрын
I have the written blog on thegrowingdeveloper.org
@sarbjotsingh9998
@sarbjotsingh9998 4 жыл бұрын
Can you provide the code?
@TheGrowingDeveloper
@TheGrowingDeveloper 4 жыл бұрын
The code is available on the website
Flutter Firestore Tutorial - Mobile CMS app for Firestore | Part 1
20:33
The Growing Developer
Рет қаралды 8 М.
How to win a argument
9:28
ajaxkmr
Рет қаралды 543 М.
АЗАРТНИК 4 |СЕЗОН 1 Серия
40:47
Inter Production
Рет қаралды 1,4 МЛН
Players vs Corner Flags 🤯
00:28
LE FOOT EN VIDÉO
Рет қаралды 15 МЛН
🔒📱 Google Sign In • Flutter Auth Tutorial ♡
9:49
Mitch Koko
Рет қаралды 143 М.
Unique sign in form built with Lit Firebase Auth and Flutter
1:15:53
Fun with Flutter
Рет қаралды 45 М.
Flutter Firebase Authentication - The Clean Way
8:12
Robert Brunhage
Рет қаралды 134 М.
The Secret Science of Perfect Spacing
9:40
Chainlift
Рет қаралды 422 М.
Vim in 100 Seconds
11:53
Fireship
Рет қаралды 1,1 МЛН
Responsive Admin Panel or Dashboard - Flutter UI - Speed Code
48:35
The Flutter Way
Рет қаралды 587 М.