Listening the changes of collection #8347
Unanswered
cemanganas
asked this question in
Q&A
Replies: 0 comments
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
i have nested collection.
firebaseFirestore
.collection('favourite')
.snapshots(i)
.listen((event) {
debugPrint("FAVOURITE ");
});
What i want to achieve is to have the above code listening
when i add data like this
firebaseFirestore
.collection('favourite')
.doc(authId)
.collection('list')
.add(data)
is it possible ?
Thank's
Beta Was this translation helpful? Give feedback.
All reactions