htable 0.0.1
htable: ^0.0.1 copied to clipboard
HTable
h_table #
A Flutter widget for displaying tables with:
- Custom column widths
- Resizable columns
- Filtering & searching
- Excel export
- Tap event support
Features #
✅ Simple header & data binding
✅ Sortable columns
✅ Filter by any column
✅ Resize columns via drag
✅ Export to Excel (.xlsx)
Usage #
HTable(
header: ['Name', 'Email', 'Role'],
data: [
['John Doe', 'john@example.com', 'Admin'],
['Jane Smith', 'jane@example.com', 'User'],
],
)