Flutter Firebase Authentication - Verifying Email

  Рет қаралды 32,161

Andy Julow

Andy Julow

3 жыл бұрын

In this video we will verify the email address of a user signing up with email and password through firebase authentication.
Social Media:
Twitter: @andyjulow.com
Patreon:
/ andyjulow
Github Repo:
START: github.com/nhandrew/firebase_... (main branch)
END: github.com/nhandrew/firebase_... (verify_email branch)

Пікірлер: 63
@hermano360
@hermano360 3 жыл бұрын
Thank you for this video. I would be completely lost without this series. Very grateful
@ahmedadel756
@ahmedadel756 3 жыл бұрын
i have been following u for a while and u are such a great help for real thx
@haiderjaafer8164
@haiderjaafer8164 3 жыл бұрын
Always amazing episode keep going forward...
@madhank93
@madhank93 3 жыл бұрын
Thanks man. Please do more of this firebase videos.
@bhavyaagrawal2943
@bhavyaagrawal2943 Жыл бұрын
This video was the easiest solution to the email verification problem .Thanks for uploading..! ♥
@wesleybarnes5376
@wesleybarnes5376 3 жыл бұрын
Beautifully done, bravo 👏 🙌
@peterbk364
@peterbk364 3 жыл бұрын
Loved this series Sir
@unbeatablexxy8078
@unbeatablexxy8078 3 жыл бұрын
So where is the video when registering to send an verification email ? It is not covered in your tutorials, that's the most important part.
@carlosandressanchez5211
@carlosandressanchez5211 3 жыл бұрын
Video was about verification, no registration lol. Furthermore, registration is just calling a Firebase function, you can even see it on the video.
@uzaircassim
@uzaircassim 2 жыл бұрын
Thanks man really appreciate your help here!
@thisararandimal917
@thisararandimal917 3 жыл бұрын
That is Great video .Thank you very much Sir
@edfowler7223
@edfowler7223 3 жыл бұрын
Another great video. Would it be wise to add an emailVerified check in the Sign In sequence on LoginScreen?
@tobotis2658
@tobotis2658 3 жыл бұрын
Your voice is perfect for learning Stuff 🤣
@nils7285
@nils7285 3 жыл бұрын
Thanks a lot for this video!!
@peterbk364
@peterbk364 3 жыл бұрын
thankyou SIR... your series are life-Saving
@sougandhs4501
@sougandhs4501 3 жыл бұрын
Did you had any deprecated error like firebase firecore deprecated with java like that ?
@peterbk364
@peterbk364 3 жыл бұрын
@@sougandhs4501 no... i hadn't encountered it yet
@pinoymotorrider5913
@pinoymotorrider5913 3 жыл бұрын
It works. thanks for this video.
@janfranciscoramalho7661
@janfranciscoramalho7661 2 жыл бұрын
Hi there. Even clicking in the email link and the email is verified, the app cannot let the loop of the timer. What's wrong?
@morrinnadyapangesti8951
@morrinnadyapangesti8951 2 жыл бұрын
did u fix that issue?
@janfranciscoramalho7661
@janfranciscoramalho7661 2 жыл бұрын
@@morrinnadyapangesti8951 Yes, but i don't remember if this was a bug
@eNONO-ot4zh
@eNONO-ot4zh 3 жыл бұрын
Really helpfull tutorial. Thank
@thebullcapital
@thebullcapital 3 жыл бұрын
simple but the best
@gauravsharma734
@gauravsharma734 3 жыл бұрын
Ok , I used the method you showed , but according to my experience its not a very clean method to check for email verification. I am looking into adding a listener to do the job both at the time of signup and login.
@aprameyaaithal9071
@aprameyaaithal9071 3 жыл бұрын
Thank you very much!
@campuranakun8349
@campuranakun8349 Жыл бұрын
Thank you sir for this great tutorial, but how if we want to make it in null safety? i try this tutorial and the user without verification email can login to the homescreen.too. thanks sir.
@stefaandeconinck1531
@stefaandeconinck1531 3 жыл бұрын
Thx for the nice video.
@uzaircassim
@uzaircassim 2 жыл бұрын
Could you please make a tutorial on how to make a disclaimer/user agreement form please
@dimitristotsios2292
@dimitristotsios2292 3 жыл бұрын
Thank you.
@lido160
@lido160 3 жыл бұрын
Problem is the new user account is being created BEFORE they verify the email they provided. WHY?
@Neerajkumar-xl9kx
@Neerajkumar-xl9kx 2 жыл бұрын
What will happen if your logins without verifying, since email is getting registered without email verification
@techlangonline6131
@techlangonline6131 2 жыл бұрын
"and everything will crash!" lol!!
@chetan6406
@chetan6406 3 жыл бұрын
Waiting for payment integration and add to cart features on farmers market app
@deviduttadixit9572
@deviduttadixit9572 3 жыл бұрын
When I enter any worng email and password and click on sign up, then the total app gone stock
@reshmamasudha9597
@reshmamasudha9597 3 жыл бұрын
amazing and working tutorial if followed step by step .. i really go for it .. can you please make a video on microsoft authentication also for android application??
@andyjulow4388
@andyjulow4388 3 жыл бұрын
Hi Resma. Sure, I just started a new series on a dummy application that demonstrates a number of different forms of sign in. Microsoft isn't one of them right now, but happy to add it.
@reshmamasudha9597
@reshmamasudha9597 3 жыл бұрын
@@andyjulow4388 if you make a video related to this please notify along with the video link
@Serfey1
@Serfey1 2 жыл бұрын
oh ,I've had a problem , it's not working anymore ,because it sends me the following error in user = auth.currentUser; and flutter say's You should not use this getter to determine the users current state, instead use [authStateChanges], [idTokenChanges] or [userChanges] to subscribe to updates.
@plotsklapps
@plotsklapps 2 жыл бұрын
User user; now shows: Non-nullable instance field 'user' must be initialized. Since we hope to get it later, I changed it to User? user; and added null-checks (!) everywhere I use 'user'. When I run the program, I get null value returned every 5 seconds in the console and no verification email gets sent. Is there something else that needs to be changed or I'm missing? Edit: The changes I made DO work. The emailadress I used to verify just bounces the verification email. Used another email and worked like a charm. Thanks!
@koukssgirl5280
@koukssgirl5280 2 жыл бұрын
how did you add the null checks ?
@plotsklapps
@plotsklapps 2 жыл бұрын
@@koukssgirl5280 When you declare User? user you make every check every instance of user for null with !, so literally add a ! after user, like so: user! and it should work, like it did for me.
@hectorprx
@hectorprx 3 жыл бұрын
Thanks
@slc_
@slc_ 3 жыл бұрын
i have a question. i've been using firestore for a while so if i update it it gives errors so i leave it the same. however i was trying to implement this but since currentuser is still a future it gives me an error. any fix?
@andyjulow4388
@andyjulow4388 3 жыл бұрын
I would suggest you set the current user variable on login from the firebase login result instead of using the future based firebase function. Set the current user back to null on logout. Then you have your own static value to grab when needed
@slc_
@slc_ 3 жыл бұрын
@@andyjulow4388 thank you very much!
@slc_
@slc_ 3 жыл бұрын
@@andyjulow4388 oh and another thing, after i verify my email, it doesn't go to the next screen. idk why. i tried making it longer so i have more time to go but still no effect
@ingartstudio
@ingartstudio 3 жыл бұрын
Super. Please do also forgot password by email
@francescofreddi4374
@francescofreddi4374 3 жыл бұрын
great Andy, like always... mmmmmmmmmm can you check Riverpod instead normal Provider..........
@andyjulow4388
@andyjulow4388 3 жыл бұрын
I have a video planned on Riverpod, but would probably stick to provider in this series just to keep it simple.
@francescofreddi4374
@francescofreddi4374 3 жыл бұрын
@@andyjulow4388 :) :=) this is why iam following you!!!! great!!!
@soundofmusic94
@soundofmusic94 3 жыл бұрын
Can I do this with a StreamBuilder? or isn't viable?
@gamisisila
@gamisisila 3 жыл бұрын
Your mentioned links are haven't this tutorial's cord. And also this code is didn't work for me. It gives me an error. You skipping the most relevant thing in this tutorial, it is the verified email receiving part. Anyway, your password reset video is perfect.
@restaurantrecipebyhafsa
@restaurantrecipebyhafsa 11 ай бұрын
logout does not work after that why?
@devState226
@devState226 3 жыл бұрын
Great
@kartikbhardwaj9913
@kartikbhardwaj9913 3 жыл бұрын
there is one problem bro user is still creating I don't need verify my email I can just close the app and re start and iIcan login to the app
@andyjulow4388
@andyjulow4388 3 жыл бұрын
Yes, it's just a simple example. In a real app you would want to have a listener setup for entry. It's coming in a future video.
@droidxxi
@droidxxi 2 жыл бұрын
@@andyjulow4388 Did you make this video dude?
@cemilfatihyol4547
@cemilfatihyol4547 Жыл бұрын
Well this does not work with every mail provider. Outlook sees this verification mail like spam.
@mgdmaaztaha797
@mgdmaaztaha797 3 жыл бұрын
i have error in line 13 User user; i don't why
@tod670
@tod670 3 жыл бұрын
Same tutorial for react?
@SkyFallsLegion
@SkyFallsLegion 2 жыл бұрын
I don't think a timer is the correct way to handle this. You should just catch any exceptions thrown
@eNONO-ot4zh
@eNONO-ot4zh 3 жыл бұрын
I want you give 1000 like 👍. But KZbin not agree. 😀 Thank. I waiting phone authentification
@mohdyusuf6277
@mohdyusuf6277 3 жыл бұрын
bro it is not working.
Google login with Firebase and Flutter
47:19
Andy Julow
Рет қаралды 10 М.
Flutter Firebase Authentication - Email and Password
24:32
Andy Julow
Рет қаралды 38 М.
UNO!
00:18
БРУНО
Рет қаралды 2,2 МЛН
A little girl was shy at her first ballet lesson #shorts
00:35
Fabiosa Animated
Рет қаралды 16 МЛН
Clown takes blame for missing candy 🍬🤣 #shorts
00:49
Yoeslan
Рет қаралды 47 МЛН
Как бесплатно замутить iphone 15 pro max
00:59
ЖЕЛЕЗНЫЙ КОРОЛЬ
Рет қаралды 8 МЛН
Flutter Firebase Authentication - Error Trapping
9:17
Andy Julow
Рет қаралды 13 М.
7   - Verifying a Users Email
6:23
Wael abo hamza
Рет қаралды 12 М.
Passwordless authentication in #flutter and #firebase
11:00
AjayCodeX
Рет қаралды 6 М.
Flutter Firebase Authentication [2024] The Cleanest Way
23:32
HeyFlutter․com
Рет қаралды 146 М.
Flutter - Firebase Mobile Phone Verification | Firebase Auth (2021)
1:01:46
Flutter Firebase Authentication - Reset Password
8:18
Andy Julow
Рет қаралды 22 М.
Hacker101 - JavaScript for Hackers (Created by @STOKfredrik)
24:17
Проверил, как вам?
0:58
Коннор
Рет қаралды 283 М.