c.im is one of the many independent Mastodon servers you can use to participate in the fediverse.
C.IM is a general, mainly English-speaking Mastodon instance.

Server stats:

2.8K
active users

Frank van Puffelen

To wait for a document to be created in Firestore by an async process, don't do this:

final cred = await auth.signInAnonymously();
Future.delayed(Duration(seconds: 15); // 👈
final doc = await firestore.doc(cred.user!.uid).getDoc();

That 15s wait will always be used, even when document creation takes much less time.

Instead listen to the snapshots() and convert that to a Future of the first document:

final cred = await auth.signInAnonymously();
final doc = await waitForDoc(firestore.doc(cred.user!.uid));

Full code (including of the waitForDoc helper function) and more on puf.io/posts/waiting-for-fires and stackoverflow.com/a/78827418

Thanks to help from Luke Pighetti (🙏) on Twitter, waitForDocument is now down to this:

Future<DocumentSnapshot> waitForDocument(DocumentReference ref) {
return ref.snapshots().firstWhere((snapshot) => snapshot.exists);
}