Table
Data tables with sorting and filtering.
Installation
bash
flutter_studio add tablebash
flutter pub add flutter_studioUsage
dart
CustomTable(
columns: [
TableColumn(label: 'Name', key: 'name'),
TableColumn(label: 'Email', key: 'email'),
TableColumn(label: 'Status', key: 'status'),
],
rows: [
{'name': 'John Doe', 'email': 'john@example.com', 'status': 'Active'},
{'name': 'Jane Smith', 'email': 'jane@example.com', 'status': 'Inactive'},
],
)API Reference
Properties
| Property | Type | Default | Description |
|---|---|---|---|
columns | List | required | Table columns |
rows | List | required | Table data rows |
