reporter 0.1.1
reporter: ^0.1.1 copied to clipboard
A package that helps prepare tabular reports.
Reporter #
A standard for generating reports in pure dart.
Note: Currently only supports tabular reports.
Features #
- Build tabular reports with ease.
- Handles column nesting (colspan).
- Handles row nesting (rowspan).
- Full customizable.
- Language independent, can be adapted for Excel, Html, Pdf, Markdown, txt, etc ...
- Surprisingly easy to use.
Getting started #
- Depend on the
reporter
packagedart pub add reporter
- Optionally depend on other specific generators like
reporter_html
,reporter_syncfusion_flutter_xlsio
, etc... - Use
TabularReporter.calculateCells
to calculate the body cells from rows and columns. - Use
TabularReporter.calculateHeaderCells
to calculate the header cells from columns.