Hash-Studios / e-learning-app

E-Learn is a beautiful open-source education app for Android. It is built with Dart on top of Google's Flutter Framework.
BSD 3-Clause "New" or "Revised" License
317 stars 118 forks source link

Can you post the screenshots of firebase setup? #3

Closed Akarshshettyy closed 4 years ago

codenameakshay commented 4 years ago

The app uses Firebase auth & Cloud Firestore. For Firebase auth, one needs to just implement Google Sign-in which can be done using this. And for cloud firestore, you just need to enable it from the Firebase console. Then the app will automatically create users whenever they login on the basis of the following schema.

└── users
    └── documentID (AutoID)
        ├── id - 'User ID'
        ├── email - 'User email'
        ├── name - 'User name'
        ├── createdAt - DateTime.now() or timestamp
        └── premium - 'Boolean'

This is the only thing needed to done with Firebase and hence I will be closing this issue. If you have any more doubts feel free to reopen this issue.

Akarshshettyy commented 4 years ago

Thanks it cleared my doubt with firebase