Skip to content
Discussion options

You must be logged in to vote

We can use the Derivative Field to extract the downloadURL derived from an image uploaded in another column. Refer to the following video to see how to get the download URL.

downloadURL1.mp4

STEPS:

  1. Create a Derivative field and set the Listener fields to be the Image column.
  2. Change the Output field type to URL.
  3. Set the Derivative script to this:
const derivative:Derivative = async ({row,ref,db,storage,auth,logging})=>{
    let url = row.image[0].downloadURL;
    return url;
  }
  1. Continue to add images and retrieve the URL in the derivative column.

Now, you can continue to use the derivative column as an Image Path in FlutterFlow.

Replies: 1 comment 3 replies

Comment options

You must be logged in to vote
3 replies
@DayneLinx
Comment options

@DayneLinx
Comment options

@BeeBombshell
Comment options

Answer selected by BeeBombshell
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
2 participants