excel_plus 0.0.3
excel_plus: ^0.0.3 copied to clipboard
Read, create, and edit Excel .xlsx files in Dart and Flutter with high performance and low memory usage.
0.0.3 #
- Organized API docs into 5 categories: Core, Cell Values, Styling, Number Formats, Layout.
- Hidden internal APIs (Parser, ExcelWriter, FastList, etc.) from public documentation.
- Improved dartdoc comments across all public classes and methods.
- Cleaned up Excel class method docs with proper one-line summaries.
0.0.2 #
- Removed
collectionandequatabledependencies — reduced to 3 deps (archive,xml,web). - Codebase cleanup: removed dead code, duplicate utilities, and redundant comments.
- Consolidated XML escaping into a single shared utility.
- Extracted common date/time fraction calculation helper.
- Fixed minimum
xmlconstraint to^6.3.0for downgrade compatibility.
0.0.1 #
- Initial release.
- Performance-optimized fork of excel v5.0.0.
- SAX-based streaming parser replaces full DOM parsing for cell data and shared strings.
- Lazy sheet loading — sheets are parsed on first access, not at file open.
- O(1) cell style lookup via cached reverse index.
- Smart archive cloning — reuses unmodified ZIP entries instead of copying.
- Fixed-point span correction algorithm with early termination.
- 100% API compatible — drop-in replacement for the
excelpackage. - 76 unit tests + 13 integration tests on Android emulator.