Bhavya
Bhavya15mo ago

Hey ThorDevelopers FlutterflowDevs Ankit

Hey @ThorDevelopers(FlutterflowDevs), @Ankit Prajapati, The Image field automatically compresses the uploaded images by default. If the size is still large, you could use a Derivative column to minify your image sizes further using an NPM package.
1 Reply
ThorDevelopers(FlutterflowDevs)
Hi @Bhavya ✨ If you have any reference links regarding then it would be really helpful. My Current Design 1. Col1:- Using ' Image Type' column to upload Image. 2. Col2:- Using 'Derivative Type' Column to listen Col1 event and extracting firebase URL from it. Derivative column config code below const derivative:Derivative = async ({row,ref,db,storage,auth,logging})=>{ return row.couponImageUpload[row.couponImageUpload.length-1].downloadURL; }