ir0nstone / Twooter

A simple implementation of an app like Twitter, created to teach myself how to use Firebase and how to integrate it with Flutter.
0 stars 0 forks source link

View Other Accounts Page #7

Closed ir0nstone closed 2 years ago

ir0nstone commented 2 years ago

Create a page that allows us to view other accounts. Probably done after #6 so that we can create a "preview" of all posts sent by the user, and also when we click on the username on the Feed page it would take us there.

ir0nstone commented 2 years ago

Now #6 is done, work can begin on this. Problem is that currently we only have the userID, not a User object, so we just have to convert from one to the other. Hopefully not too hard?

ir0nstone commented 2 years ago

It's a security risk to access user data from the client-side SDK according to https://stackoverflow.com/questions/62623535/flutter-get-user-data-from-firebase, so I will just have to use the users collection in Firebase.