I'm working on a FlutterFlow project where I need to display data in a DataTable
. The data is split between two Firebase collections:
Users Collection: Contains fields like
profile
,name
, andappliedDate
.User Details Collection: Contains a list of user details, including
status
.
I want to display the following in the DataTable
:
Profile (from the users collection)
Name (from the users collection)
Applied Date (from the users collection)
Status (from the user details collection)
The challenge is that status
is stored in a separate collection (user details
), while the rest of the data comes from the users
collection.
How can I query both collections and combine the data to display in a single DataTable
in FlutterFlow? Any guidance or examples would be appreciated!