This is a more general question, but how do I get unique information based on who has signed in? Right now I can get very basic information such as the user's name, profile picture, email, etc.
For example:
user.profile.name or user.profile.email
But let's say that I have a calendar app. Each user who signs in will have a different list of events. Where would retrieve the user's unique information from and where do I store their information which is directly generated from my app?
I just want the general idea of how to structure it and display unique information based on whoever just signed in. I was thinking that people probably do this in Firebase Realtime DB, but I'm not 100% where to go with that.
Im doing this in iOS