© 2026 Hedgehog Software, LLC

TwitterGitHubDiscord
More
CommunitiesDocsAboutTermsPrivacy
Search
Star
Setup for Free
SupabaseS
Supabase•3y ago
carl237

Upload progress flutter

i have the below code for uploading images to supabase. is it possible to keep track of the upload progress of an image?

Future<String> uploadImage(
String imagePath, String storagePath, imageName) async {
final supabase = Supabase.instance.client;

await supabase.storage.from('/$imagePath').upload(
imageName,
File(imagePath),
fileOptions: const FileOptions(cacheControl: '3600', upsert: false),
);
final String imageUrl =
supabase.storage.from('').getPublicUrl(imagePath);
return imageUrl;
}
Supabase banner
SupabaseJoin
Supabase gives you the tools, documentation, and community that makes managing databases, authentication, and backend infrastructure a lot less overwhelming.
45,816Members
Resources

Similar Threads

Was this page helpful?
Recent Announcements

Similar Threads

How to upload large files to storage with upload progress in Flutter
SupabaseSSupabase / help-and-questions
8mo ago
example of upload with progress indicator (with streams)
SupabaseSSupabase / help-and-questions
4y ago
SupabaseAuthState in Flutter
SupabaseSSupabase / help-and-questions
4y ago
Seeding users in Flutter (supabase_flutter 1.0.1)
SupabaseSSupabase / help-and-questions
4y ago