v2.0.5table_sticky_headers
Two-dimension table with both sticky headers. You may scroll left \ right and top \ bottom. Sticky headers always stay visible. Legend cell (top left) always visible too.
Table with sticky headers
{"sdk":"flutter"}{"sdk":"flutter"}English project snapshot. Visit GitHub for the latest content.
This package for Flutter allows you to display two-dimension table with both sticky headers.
Key of this package is sticky headers. You can scroll table any direction and headers (top and left) will always stay. Cells themselves are fully customizable as you can fill them with Widgets.
To work with table you need to fill it with data. It has three builders for generating title column (List), title row (List) and content itself (List.
Simplest UseCase. You have two-dimensional array of Strings. Builder takes value from array and generates Text widget:
contentCellBuilder: (i, j) => Text(data[i][j]),
For more advanced usage - decorate Text with other widgets like borders, cell colors, etc. Check decorated_example.dart to see it in action. You can also wrap cell with tap listeners and add custom behavior on tap. Check tap_handler_example.dart.
The cell dimensions can be customized using the cellDimensions property of StickyHeadersTable. Use:
The alignment of the cell contents can be customized using the cellAlignments property of StickyHeadersTable. Use:
You can provide functions that execute when tapping a cell by setting the properties:
You can provide offset to the table for X and Y, by using either double offset or cell index offset:
You can also set a callback for when the scrolling ends by setting the onEndScrolling property.
By combining the two above features, you can return to the previous scroll position after a rebuild. See example below:
double _scrollOffsetX = 0.0;
double _scrollOffsetY = 0.0;
StickyHeadersTable(
// ... other properties ...
initialScrollOffsetX: _scrollOffsetX,
initialScrollOffsetY: _scrollOffsetY,
onEndScrolling: (scrollOffsetX, scrollOffsetY) {
_scrollOffsetX = scrollOffsetX;
_scrollOffsetY = scrollOffsetY;
},
)
You can also define a custom set of scroll controllers for both title and body with the scrollControllers property.
IMPORTANT: don't forget to dispose your scroll controllers if you are using this field. Otherwise table will take care of disposal.
Feature requests and PRs are welcome.
Examples
Widget usage example:
// titleColumn - List<String> (title column)
// titleColumn - List<String> (title row)
// titleColumn - List<List<String>> (data)
StickyHeadersTable(
columnsLength: titleColumn.length,
rowsLength: titleRow.length,
columnsTitleBuilder: (i) => Text(titleColumn[i]),
rowsTitleBuilder: (i) => Text(titleRow[i]),
contentCellBuilder: (i, j) => Text(data[i][j]),
legendCell: Text('Sticky Legend'),
),
Visit examples to see it in details
Please file issues and feature requests.
Project is on support-only mode. Feel free to contact me so I can share access rights to publish updates and maintain.
This project is a starting point for a Dart package, a library module containing code that can be shared easily across multiple Flutter or Dart projects.
For help getting started with Flutter, view our online documentation, which offers tutorials, samples, guidance on mobile development, and a full API reference.