I followed the instructions here https://docs.flutterflow.io/data-and-backend/searching-data/algolia-search, and watched this promising youtube video: https://www.youtube.com/watch?v=jtdhOdCCzk8.
I created a new project with just one screen with one list view and a text field with search.
The logs in the Algolia console show that the query was successful and it returned data. However, in my FF app I only see a spinning loading widget and no data.
What am I doing wrong?
Flutter 3.13.7
Chrome
Windows 11
Example response from Algolia from the Search API log:
{
"hits": [
{
"name": "board screw",
"whoHasIt": "Contacts/ljfxtJloG6KT1l7hItOD",
"status": "IBorrowedIt",
"whoOwnsIt": "Contacts/c4ac2746089e2576902bf2a8936415d8",
"description": "stainless steel screw to mount straps. Just one",
"path": "Items/xzoM3YufjRdNRGNIjIH4",
"lastmodified": {
"_operation": "IncrementSet",
"value": 1703009354642
},
"objectID": "xzoM3YufjRdNRGNIjIH4"
},
{
"whoHasIt": "Contacts/c4ac2746089e2576902bf2a8936415d8",
"description": "two folding tables",
"whoOwnsIt": "Contacts/c4ac2746089e2576902bf2a8936415d8",
"status": "Returned",
"name": "Folding tables",
"path": "Items/l3OD5z1uKXxnbsUAJsqs",
"lastmodified": {
"_operation": "IncrementSet",
"value": 1703009354642
},
"objectID": "l3OD5z1uKXxnbsUAJsqs"
},
{
"name": "SUP",
"whoOwnsIt": "Contacts/lR8UjEhaxBTQxTBtBHl0",
"status": "IBorrowedIt",
"whoHasIt": "Contacts/HyILOtT7wrBYCHuw7M56"
[...]
Response body has been truncated.
(I'm assuming the truncation is just in the log, not the actual data that was sent)