How to display images from Firestore on FlutterFlow using Rowy? #1085
Answered
by
BeeBombshell
BeeBombshell
asked this question in
Support / Q&A
-
|
I am using Rowy as a CMS to manage all the data to be displayed on my FlutterFlow project. But I'm not sure how to make an image appear in FlutterFlow's Photo Path data column. |
Beta Was this translation helpful? Give feedback.
Answered by
BeeBombshell
Jan 19, 2023
Replies: 1 comment 3 replies
-
|
We can use the Derivative Field to extract the downloadURL1.mp4STEPS:
const derivative:Derivative = async ({row,ref,db,storage,auth,logging})=>{
let url = row.image[0].downloadURL;
return url;
}
Now, you can continue to use the derivative column as an Image Path in FlutterFlow. |
Beta Was this translation helpful? Give feedback.
3 replies
Answer selected by
BeeBombshell
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment

We can use the Derivative Field to extract the
downloadURLderived from an image uploaded in another column. Refer to the following video to see how to get the download URL.downloadURL1.mp4
STEPS:
Now, you can continue to use the derivative column as an Image Path in FlutterFlow.