If you want to add additional data, you need to create a model class for your user and then store it in your Firebase database . In general, after sign up, you can create a node tree for user like picture. Then, you can get the info with user key that can get by calling FirebaseUser.
Read moreCan I use Firebase without backend?
You can use firebase to skip backend programming , or even user firebase to setup a nodejs backend (functions). The bad thing about not using a backend is security, you would need to master firebase security rules to completely protect data.
Read moreHow do I set Firebase authentication?
Get Started with Firebase Authentication on Websites
Read moreWhat is custom authentication in Firebase?
You can integrate Firebase Authentication with a custom authentication system by modifying your authentication server to produce custom signed tokens when a user successfully signs in . Your app receives this token and uses it to authenticate with Firebase.
Read moreCan we use Firebase database without authentication?
It works fine with user logging in.
Read moreWhich function in the Firebase checks if the username and password are registered?
onStart(); // Check if user is signed in (non-null) and update UI accordingly.
Read moreHow do I use Firebase with username and password?
If you haven’t yet connected your app to your Firebase project, do so from the Firebase console. Enable Email/Password sign-in: In the Firebase console, open the Auth section. On the Sign in method tab, enable the Email/password sign-in method and click Save .
Read more