-
Notifications
You must be signed in to change notification settings - Fork 2.2k
Welcome to the AngularFire discussion board! #2707
-
We have Github Discussions now! Figured this would be a great spot for the community to collaborate; show off cool things that they've build; and discuss Angular, Firebase, and naturally AngularFire!
console.log('Hello World!');
- Use our Q&A board to ask technical questions and get help troubleshooting your app. I'd also suggest asking on StackOverflow. If you do cross-post please include a link to your question on other boards, so it's easier to cross-post answers. As always a minimal reproduction on StackBlitz is very much appreciated and recommended!
- The Ideas board will be the primary place we discuss feature requests, proposals, and roadmaps. We'll only allow an issue for a feature request once the feature / proposal is accepted, well defined, a small enough chuck to be worth tracking that way, or could use assistance from the community.
- General and show and tell are pretty self explanatory
This is all very new, as we get a feel for how this works we'll likely update, add groups, and define some ground rules. In the meantime, be respectful and let's try to make this a helpful discussion board.
Beta Was this translation helpful? Give feedback.
All reactions
-
🎉 6
Replies: 5 comments 4 replies
-
what happened to the angular fire documentation for ionic cli
I can't find the Installation and Setup with Ionic CLI
can't be used anymore?
Beta Was this translation helpful? Give feedback.
All reactions
-
Is the Q&A Board permanently closed? I'm unable to ask a new question (at least I can't find/figure out how/where I'm supposed to do this?)
Beta Was this translation helpful? Give feedback.
All reactions
-
Is this the way to fetch the user's uid after sign in? I want to get the uid to then fetch the user data with it.
firebase.auth().signInWithEmailAndPassword(email, password) .then((userCredential) => { // Signed in var user = userCredential.user; var uid = user.uid; // ... }) .catch((error) => { var errorCode = error.code; var errorMessage = error.message; // ... });
I can only find examples on how to do it with the classic Firebase SDK but theres nothing on how to do it with AngularFire.
Thanks in advance for your help :)
Beta Was this translation helpful? Give feedback.
All reactions
-
I'm actually looking for the exact same answer to this. I have my login page and registration page working but I still for some reason can't get things to link to firestore for creating a user profile database
Beta Was this translation helpful? Give feedback.
All reactions
-
Can someone help me understand why there is an @angular/fire 7.6 and then @angular/fire 16?
Are they the same? What's the difference?
Beta Was this translation helpful? Give feedback.
All reactions
-
We ended up moving to have our major versions be the same as Angular's, so it's more clear which version we support. AngularFire v16 works with Angular v16.
Beta Was this translation helpful? Give feedback.
All reactions
-
👍 1
-
Hey guys, we're trying to go zoneless for our Angular 17.1 application, but @angular/fire throws an error when zonejs is not present. Did any of you guys by chance try this and figured out if there is a workaround for this?
Beta Was this translation helpful? Give feedback.
All reactions
-
We're prioritizing support for zoneless very soon
Beta Was this translation helpful? Give feedback.
All reactions
-
❤️ 1
-
Thank you so much
Beta Was this translation helpful? Give feedback.