Upload images in Flutterflow's Firestore Data manager

Troubleshooting

I'm trying to upload images in Flutterflow's Firestore Data manager, using the manage content button in a firebase collection. I can write in a text field without any issues using the manage content, but when I try to update a document by uploading an image, I click "upload image" and I see the thumbnail appear in the imageURL field, but when I then click the "Update Document" icon, it spins for about a second and then nothing else happens.

Create, Read, and Write for that collection are all set to authenticated user in the collection rules and it's showing they've been deployed. I am logged in as an authenticated user.

Any help on this would be greatly appreciated. Thx!

What have you tried so far?

I've checked the collection rules in the flutterflow firebase section, made sure the data type is image url, validated the schema in settings, confirmed that [email protected] is set as a user in the firebase console.

Storage rules in the firebase console cloud firestore section are as follows:

rules_version = '2';

service firebase.storage {

match /b/{bucket}/o {

match /{allPaths=**} {

allow read, write: if false;

}

match /users/{userId}/{allPaths=**} {

allow read: if true;

allow write: if request.auth.uid == userId;

}

}

}

Looked through this community, searched the web, and YouTube for solutions.

Did you check FlutterFlow's Documentation for this topic?
No
2