flutter_file_upload 0.1.0
flutter_file_upload: ^0.1.0 copied to clipboard
Advanced cross-platform file upload with progress, chunking, and resume.
Changelog #
All notable changes to this project will be documented in this file.
The format is based on Keep a Changelog, and this project adheres to Semantic Versioning.
Unreleased #
0.1.0 - 2025-11-10 #
Added #
- Added
skipFinalRequestparameter to allow skipping the final verification request - Enhanced example app with platform-agnostic file handling (works on web and native)
- Added comprehensive error messages explaining expected behavior
Changed #
- Web implementation now properly waits for all chunk uploads using
Future.wait() - Changed final verification request from HEAD to GET for consistency across platforms
- Example app now uses
httpbin.org/anythingfor better testing compatibility
Fixed #
- Fixed web implementation race condition where final request fired before all chunks completed
- Fixed progress callback to prevent multiple 0-100% cycles when chunks complete out of order
- Improved error handling with user-friendly messages for network errors