I’m trying to set up a GET API in Xano that returns data with images stored in Xano Vault. When I test the API endpoint directly,
I have a GET endpoint in Xano that returns a list of data that looks like this:
{
"id": 1,
"name": "Carly"
"image": {
"url": "https://…xano.io/vault/…png",
}
// … other fields …
}
When I test the API in FF, I receive the correct image.url
in the response. However, in FlutterFlow—when I configure a Network Image widget — I always see “null” under Image in the UI builder/preview, and no image GET requests appear in DevTools.
Can someone please explain how to display images from Xano in FF? Best practice?