Flutter get User Data from Firebase

前端 未结 2 831
没有蜡笔的小新
没有蜡笔的小新 2021-01-29 07:45

I want to get User Data from firebase, I need the diplayName of a User. is there any way to get the displayName of a other user with his uid

2条回答
  •  孤城傲影
    2021-01-29 08:20

    You can't get the name, or any other details of a user that is not currently signed in using FirebaseAuth.

    Instead, you must create a node in your database where you store the name, and any other necessary details by querying the database.

提交回复
热议问题