Scale up as you grow — whether you're running one virtual machine or ten thousand.

From GPU-powered inference and Kubernetes to managed databases and storage, get everything you need to build, scale, and deploy intelligent applications.

This textbox defaults to using Markdown to format your answer.
You can type !ref in this text area to quickly search our full set of tutorials, documentation & marketplace offerings and insert the link!
These answers are provided by our Community. If you find them useful, show some love by clicking the heart. If you run into issues leave a comment, or add your own answer to help others.
Heya,
To implement upload progress tracking in your Flutter application when using DigitalOcean Spaces, you can consider the following client-side approaches:
Track Upload Progress on the Client Side: You can track the upload progress on the client side using Flutter itself. The minio package you mentioned may not provide a built-in way to track progress, but you can implement it manually using Flutter’s own mechanisms. You would typically need to divide the file into chunks and update the progress as each chunk is uploaded.
Custom Backend for Progress Tracking: Create a custom backend server that interacts with DigitalOcean Spaces and serves as an intermediary between your Flutter app and Spaces. The backend can track upload progress and provide progress updates to your Flutter app through an API. This way, you can have more control over progress tracking.
Hope that this helps!