I'm pleased to have found this tutorial after a month of searching-it's concise, clear, and straightforward, with no unnecessary jargon or complexity. ❤❤❤❤❤
I have been trying to get a solution for firebase auth since past 4 days......i have watched over 20+ videos...yours was the best. Thank you so much for creating such an understandable tutorial keep on going ❤❤
I hunted for many tutorials to build the Firebase integration, and yours was the best. Simple, straightforward, and to the point! Thank you for saving my time🎉
I had to make a few changes due to updates for firebase but otherwise this was the catalyst that got me through a 3day headache of establishing auth. Thanks!
These are the most clear react tutorials I've seen, you're the best! Can you please cover more firebase in the future? (How users can upload text or files to a storage that has an ID or similar only for that group of people?) THANK U!!
This was actually an amazing tutorial, I've tried looking for things like this previously but I could never find it. It would always be how to design a Login UI but it would never include the authentication. Honestly so glad I found this channel
Thank you for this tutorial. Very easy to understand. Really happy I stumbled across it as I’ve never touched expo or firebase before so this is a great starting point. Thanks again
Hello guys, if you are watching this video in 2024 and version of your firebase is 10+ you may have encountered errors such as "unable to resolve firebase" or "cannot read length" you should change your import in firebase.js to import * as firebase from "firebase/compat"; No need to change anything else in the code. This worked for me so I hope it helps you as well.
This was amazing, thank you very much! I've encountered an issue with Firebase version 8, it has problems with AsyncStorage dependencies, so I had to upgrade to Firebase 9, the syntax is almost the same and your tutorial helped a lot! Thank you again =)
Even with the changes from Firebase ^9.0, I still found this video intuitive and extremely helpful for building a small authentication. Thank you so much for this!!
Great tutorial! Very well explained, as a Newbie in the application development I could follow every step. Would love to see a navigation Menu for the next Video, so once you're in the Home screen you can go to various screens (maybe with icons?).
READ THIS IF NOTHING WORKS AND ITS SUMMER 2023: after trying so many fixes for having the Unable to resolve "firebase" from "firebase.js" error, what it worked was downgrading to version firebase V9 (now the latest is V10), by using the command 'npx expo install firebase@9.6.4' (make sure you are in the root directory of the project). Also, you need to change the firebase.js file import with ' import firebase from "firebase/compat" '. after this it should work, if it doesnt, delete the project and start fresh with all the steps again and apply my fixes.
im getting error when importing auth from firebase: Invariant Violation: AsyncStorage has been removed from react-native core. It can now be installed and imported from '@react-native-async-storage/async-storage' instead of 'react-native'
great video wish you could do more videos about different projects such as creating a simple shopping app because I like the way u explain your videos.
Hey Matt I am getting an error while traveling between screen after logging or signing up [cannot update a `ForwardRef(baseNavigationContainer) `)while rendering a different component ('home')] Help Needed Pls
Your video is quite clear. I'm slowly puzzling out how to update your code for the new version of firebase. This would be much harder without your video to start with.
FirebaseError: Firebase: A network AuthError (such as timeout, interrupted connection or unreachable host) has occurred. (auth/network-request-failed). i got that error in expo go
This is amazing Matt. I have a question, how do I completely skip login screen once I logged in? When I reopen the app, it showed login screen first then quickly changes to homescreen. Is there a way to immediately goes to homescreen?
I did all the steps that you mentioned but I'm getting an error 'Unable to resolve "firebase" from "firebase.js"' when I try to test the sign up functionality. I'm using the firebase version 10.11.1, can you please suggest how I can fix this?
very usable tutorial, that can be implemented in every app. As you mentioned the syntax for firebase v9 config is changed, so it would be very helpful to compare firebase initialize for v8 and higher.
@@marinasuban893 is there a reason you need to use v9? else just use v8 or try import firebase from 'firebase/compat/app'; import 'firebase/compat/auth';
I just started with the video and on my mac I got the following error. "expo init is not supported in the local CLI, please use npx create-expo-app instead" is expo command you showed still valid
You should be proud of this tutorial. You've made something challenging to wrap your mind around easy to understand. Superb!
Miñc ccgn
I'm pleased to have found this tutorial after a month of searching-it's concise, clear, and straightforward, with no unnecessary jargon or complexity. ❤❤❤❤❤
Gotta say this is amazing. Precise, compact & thoughtful. Would love to see more firebase content in the future. Keep up the good work!
I have been trying to get a solution for firebase auth since past 4 days......i have watched over 20+ videos...yours was the best. Thank you so much for creating such an understandable tutorial keep on going ❤❤
I hunted for many tutorials to build the Firebase integration, and yours was the best. Simple, straightforward, and to the point! Thank you for saving my time🎉
I had to make a few changes due to updates for firebase but otherwise this was the catalyst that got me through a 3day headache of establishing auth. Thanks!
i changed the import * as firebase from firebase to get the specific packages I needed: auth, app, firestore
These are the most clear react tutorials I've seen, you're the best! Can you please cover more firebase in the future? (How users can upload text or files to a storage that has an ID or similar only for that group of people?) THANK U!!
Honestly one of the best tutorial that I have seen here. Straight forward and so easier to understand. Thank you so much
The best video on Firebase - Authentication with React Native.
This was a easy to follow tutorial. Bro you're doing a great job! :)
You make look React Native easier than it actually is. Keep it up, man! I'm learning a lot from you.
Thanks Manu! I try to keep it as simple as possible for everyone to understand, glad you're learning from it 🚀
I wish more tutorials were this well-articulated and precise. Thanks a lot.
This was actually an amazing tutorial, I've tried looking for things like this previously but I could never find it. It would always be how to design a Login UI but it would never include the authentication. Honestly so glad I found this channel
Amazing to hear! Thanks so much for the comment 😁 Glad you found it valuable 🚀
@@MadeWithMatt hello sir I have an doubt in when I import firebase in the login screen getting error can you pls help me
I got all what I need in just 27 minutes, he went direct to the point
Will you be making any more tutorials? Yours is the most straight forward and clearest I have ever seen, tank you
I can implement what you taught in my code. Thank you so much for sharing your knowledge, I'm learning!
Hi, how did you deal with the problem when importing auth from firebase: Invariant Violation: AsyncStorage has been removed from react-native core.
Nice clear tutorial. I think most tutorials are not too logical but this one completely makes sense. Thanks!
Bro you really saved my lyf..... Was searching for this since 3 months thank you ♥️♥️♥️♥️♥️♥️♥️♥️
So happy to hear that 🙌 glad I could help out 😁
Literally the best react native tutorials on youtube. I would love to see you create a react native app with bluetooth in the future!
Thank you for this tutorial. Very easy to understand. Really happy I stumbled across it as I’ve never touched expo or firebase before so this is a great starting point. Thanks again
Awesome tutorial, straight to the point and really clear.Thank you
Hello guys, if you are watching this video in 2024 and version of your firebase is 10+ you may have encountered errors such as "unable to resolve firebase" or "cannot read length" you should change your import in firebase.js to import * as firebase from "firebase/compat"; No need to change anything else in the code. This worked for me so I hope it helps you as well.
I watched a lot of videos but always failure with firebase. But in this video, I've success firebase. Thank you.
Thanks a million dude. I've finally gotten a simple login system for my app now 👏
your all projects are amazing, you describe all steps, that is so easy. keep it up like that.
Thanks so much for the feedback, happy to hear you enjoy it 🙌🚀
Thanks Matt, great tutorial - really easy to follow and understand the concepts
Fantastic video, man! You do a great job of explaining it simply. Appreciate the help, I'll be looking out for future videos.
The most up to date and relevant tutorial on this topic right now. Thank you!
Hey Matt, you are one of the best react native youtubers i have ever seen!Keep up the good work!!!!
This was amazing, thank you very much! I've encountered an issue with Firebase version 8, it has problems with AsyncStorage dependencies, so I had to upgrade to Firebase 9, the syntax is almost the same and your tutorial helped a lot! Thank you again =)
Could you explain what was different about the syntax?
@@NotAnAIpromise as suggested by dongimini down below, try
import firebase from 'firebase/compat/app';
import 'firebase/compat/auth';
Even with the changes from Firebase ^9.0, I still found this video intuitive and extremely helpful for building a small authentication. Thank you so much for this!!
Does it work still? with the changes
can you give me the changes? I can't resolve that
I was scared when I first tried firebase but this video really helped me to understand the concept thank you!
very well articulated tutorial. It worked in a first go. Thanks.
this amazing way to explain react with firebase. I love it, you're de man
wow! that was super clear and straight to the point! Thank you so much!
Great tutorial! Very well explained, as a Newbie in the application development I could follow every step. Would love to see a navigation Menu for the next Video, so once you're in the Home screen you can go to various screens (maybe with icons?).
I'm using Firebase 9, if you have trouble importing auth like me, change the main import line to ' import firebase from "firebase/compat" '
Thank you! this worked for me.
Thank you Sir, you really helped me
Thank you Mate You saved my Life
Excuse me , where?
Thanks a lot .It's worked
Fantastic tutorial. Easy to understand and was able to implement in my own project!
Did you get it to run on android? How?
READ THIS IF NOTHING WORKS AND ITS SUMMER 2023:
after trying so many fixes for having the Unable to resolve "firebase" from "firebase.js" error, what it worked was downgrading to version firebase V9 (now the latest is V10), by using the command 'npx expo install firebase@9.6.4' (make sure you are in the root directory of the project). Also, you need to change the firebase.js file import with ' import firebase from "firebase/compat" '. after this it should work, if it doesnt, delete the project and start fresh with all the steps again and apply my fixes.
Error showing cannot read property 'length ' of undefined, js engine: hermes
ty so much I love you
You're a hero.
seriously this guy deserve the world
Thank you so much 😍❣️
Please do more like this to us ❣️
Keep going
thanks a ton matt. very helpful. i would love to see you making videos on individual rn components
great lesson, just make it easy for the beginners , waiting for your next lesson. thanks
Really a great tutorial, super material for beginner , also thanks for sharing code on git. Happy to subscribe 👍
Starting with react native,amazing start great vid
Thank you sir.....very well explained....earned my subscribe......helped me a lot🥺👍
You are amazing bro. How simply you teach is fabulous.
Thanks Abdullah, that means a lot. Glad you enjoyed it 🙌
Great tutorial man, your work is appreciated.
im getting error when importing auth from firebase: Invariant Violation: AsyncStorage has been removed from react-native core. It can now be installed and imported from '@react-native-async-storage/async-storage' instead of 'react-native'
Please help 🙏🏽🙏🏽🙏🏽
did you ever find a solution to this?
@@yazanhailat8627if I remember correctly it has something to do with Apple firmware. Didn’t get that error when testing on android
Ok this was epic. Theres a lot of conflicting info out there... subbed!
Thanks Matthew, I really appreciate it 🙌🚀
Thank you! Was really struggling with auth, but this helped a lot.
you need to check the version. I changed the syntax but the working version for auth is 9.4.1
How did you solve the problem? I'm still struggling with it...
Thanks mate, this video has helped me a. LOT. 🙏
you're really good at this
This was such a good video. Thanks a lot!
Please keep on uploading fireabase videos. Please make a video on firestore and expo also.
thank you brother! easy to follow and very clear
Best tutorial i have ever seen! Thanks
the best tutorial ever
clear objective easy to understand
great video wish you could do more videos about different projects such as creating a simple shopping app because I like the way u explain your videos.
This was awesome!! Wonderful explanations.
Impressive work! waiting for more React Native Content
I got this bug :((
undefined is not an object (evaluating 'firebase.apps.length')
how can i fix it ?
Super helpful to get started really quickly
the best tutorial i could find
What a perfect tutorial, thanks Matt!
Hi Matt, can you make another video like this with version 9 of Firebase, I'm having some trouble in authentication. Than you!
th-cam.com/video/20TSEoJkg5k/w-d-xo.html&ab_channel=BornToCode
this might help
Same
That's an amazing tutorial bro!👍🏻
Thanks so much Aman, glad you enjoyed it!
do you have different syntax for version 10?
So easy and relaxing to watch tyvm
Hey Matt I am getting an error while traveling between screen after logging or signing up [cannot update a `ForwardRef(baseNavigationContainer)
`)while rendering a different component ('home')]
Help Needed Pls
Simple and clear tutorial
I'm very grateful to you for all your help
Thank you sooooo much for the video Matt
Fantastic tutorial mate
thank for your video, I find this content for 2 week :))))
Amazing! Glad you're enjoying it 😁
Super quick and easy. Thank You
Awesome video bro thanks for video 💖💖💖😘
Thanks so much Gourav I really appreciate it 🙌
how can i know whats the other syntax for firebase "^9.6.10", ?
Is the same for every v9 of Firebase. The important thing here is the first number of '9.6.10' to know what version you have
excellent tutorial, thank you so much for this!
Thanks a lot
Explained it extremely well. Please also make videos on real-time database, storage and cloud firestore 🔥
Your video is quite clear. I'm slowly puzzling out how to update your code for the new version of firebase. This would be much harder without your video to start with.
thank you mate , subscribed.
thanks matt for the very straight forward video can you make a video on how to verify user email through firebase
Amazing wish you kept uploading!
FirebaseError: Firebase: A network AuthError (such as timeout, interrupted connection or unreachable host) has occurred. (auth/network-request-failed). i got that error in expo go
I am now a fan! Subscribed!
BTW How about how can we perform CRUD with firebase after user authentication?
wow, these are the videos i was expecting a long time ago
I'm so glad to hear that!! 😁
This is amazing Matt. I have a question, how do I completely skip login screen once I logged in? When I reopen the app, it showed login screen first then quickly changes to homescreen. Is there a way to immediately goes to homescreen?
very clear tutorial, thanks
I did all the steps that you mentioned but I'm getting an error 'Unable to resolve "firebase" from "firebase.js"' when I try to test the sign up functionality. I'm using the firebase version 10.11.1, can you please suggest how I can fix this?
Could you add a one-time phone verification after signing up and then every time when logging in with a verification code?
very usable tutorial, that can be implemented in every app. As you mentioned the syntax for firebase v9 config is changed, so it would be very helpful to compare firebase initialize for v8 and higher.
Hi currently attempting this and cannot get v9 to work - how did you change firebase.js?
@@marinasuban893 is there a reason you need to use v9?
else just use v8
or try
import firebase from 'firebase/compat/app';
import 'firebase/compat/auth';
@@dongimini This comment saved me after over an hour... thank you!
I love you dude
@@dongimini
thank you very much dude
Note: as of April 2023, Expo v42 dependency does not work. Updating to v46+ breaks the app. :)
I just started with the video and on my mac I got the following error. "expo init is not supported in the local CLI, please use npx create-expo-app instead" is expo command you showed still valid
nice video , keep up the good content!
Hello admin, can i code ios app with reactnative on windows machine?
On "Get started", can i click "Web" for a database in my app? Or i need first iOS and Android?
why are we changing the file at 15:47? should of gone over that bud
you earned my sub. thank you so much 💌💌💌💌
thanks for this great tutorial!