'How can I build backend services for my mobile app [closed]
I want to learn to build a simple log-in page using Flutter with its backend services. Is this infrastructure good? Are there any suggestions?
- The profile picture of the user must be stored on a cloud storage
- To check the identity of the user and to retrieve the profile picture I guess a databank should do the work.
- The user should see when was the last time he/she logged in. How can I do it?
I want to use Firebase to do it.
Solution 1:[1]
As I understood that you want to develop a simple login app with authentication using Firebase. Firebase console services enable you to authenticate and firebase storage can be used to store and retrieve the login data. You can implement something like storing the date-time at every login or logout and save it in db. Update it if the login user entry exists previously otherwise add new entry to the table.
You can visit below link to read about how to implement firebase storage. It will provide you database as well as cloud storage service. So nothing other than that is required.
Sources
This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.
Source: Stack Overflow
| Solution | Source |
|---|---|
| Solution 1 | mkrieger1 |

