I've tried to make a new StreamBuilder
inside the builder of my initial stream, and while I don't get any errors, it also doesn't seem like it works. Is this possible to do?
Basically, I'm accessing a root Collection in Firebase. This collection contains two documents, and I need data from each of them, as I am building a DataTable that contains information from both paths.
EDIT: The nested StreamBuilder doesn't work because StreamBuilder must return a widget, so at least I know why it wasn't working. But I still don't have a resolution on what to do.