Retrieving Data From Firestore in time
问题 I have looked all over the internet for how to fix this problem and I can't find a solution anywhere. I am using flutter with firestore to make an app. I want to make it so when the user logins into the app at the top shows their name (simple right). I can get data from firestore: Future<void> getName() async { print("Attemping to get name!"); final firestoreInstance = await FirebaseFirestore.instance; FirebaseAuth auth = FirebaseAuth.instance; String uid = auth.currentUser.uid.toString();