flutter_expandable_table
flutter_expandable_table copied to clipboard
A Flutter widget for create an expandable table with header and first column fixed.
Hi, I'm currently exploring the flutter_expandable_table package for displaying tabular data in my Flutter application. One feature I'm particularly interested in is pagination, which allows for efficient navigation through large...
After some user requests to implement new features, I thought I'd open this issue to be able to do a review and decide whether or not to implement the requests...
I am attempting to display my data on PC devices (Windows, Mac OS) using this library, and it's working very well! I must say this is a praiseworthy library, but...
I am using elements from `flutter_form_builder`(9.1.1), and want to use form builder elements within the expanded table. For typical Flutter elements like `Text` or `ElevatedButton`, they are hidden once the...
https://github.com/rickypid/flutter_expandable_table/assets/56467320/c2707f43-509f-492a-a5fe-e220b27fc6b7 i set the data as follow static const int columnsCount = 29; static const int subColumnsCount = 2; static const int rowsCount = 100; static const int subRowsCount =...
Cannot dynamically update table contents ``` ExpandableTableCell _buildCell(String content, {CellBuilder? builder}) { return ExpandableTableCell( child: builder != null ? null : GestureDetector( onTap: () { print('Cell $content tapped'); // update...
Test for #25
I would like to change where the scroll bar appears. It would be nice if there was a configuration option to move select the right side for the scroll bar.
I am new to Flutter and would like to test out your example, but I am not sure how to run your example. I wanted to see how to build...