Hi FlutterFlow Community,
I'm passing a local image file path as a String Page Parameter (imagePath
) across three pages: Inventory
-> Loading
-> Generated
.
On LoadingPage
, I use Gemini Text From Image
. When Image Type is "Uploaded Image File" (expects local path string), the imagePath
parameter is greyed out. It becomes selectable only if I change Image Type to "Network Image".
On GeneratedPage
, I want to display this image using an Image widget. The imagePath
parameter (confirmed Type: String) is passed to this page.
When the Image widget's Image Type is "Uploaded file" (expects local path string), the imagePath
parameter is greyed out for the source value. When Image Type is "Network" (expects URL string), it's also greyed out.
The imagePath
parameter is selectable for a Text widget on the same page, confirming it's a String parameter.
Why is a String page parameter containing a local file path greyed out for the Image widget source, regardless of "Uploaded file" or "Network" type? Is there a specific binding method needed?
Thanks for any help!