There is no way to use any dynamic data as a Network Image path parameter. When testing in the web everything works fine, but when downloading APK the image won't load. The problem is in ImagePath data type. There are several issues with it:
There is no way to make a variable of this type in custom code
There is no way to convert string to this type
If you try to make a Custom Function with result type ImagePath - it's not correctly set in the code (it's set to String)
If you type the image path directly as a string in FF interface - it works. But if you use a variable for that, even if it's initially has correct ImagePath data type, it doesn't work in downloaded APK. Also, if you try to build an Image path with Combine String operation in FF interface - it won't work in APK.
How can I this to work in FlutterFlow?