-1

I am looking for a tabular data widget like DataTable which contains;

  • Pagination support
  • Sticky header
  • Footer row for sums on page

Every page will contain a fixed number of rows if there are enough. Also, the table will fit screen height but it should be scrollable horizontally because there are dozens of columns.

dummy example It will be basically like this dummy presentation.

I started with the catalog widget PaginatedDataTable but unfortunately, it has no footer row support and sticky header. Then I thought maybe I could handle it with the Table widget but that widget lacks lots of things.

Then I tried advanced_table and data_table2. Both have sticky headers and pagination support but the footer row became a problem.

I thought that thinking more uncomplicated can make everything better and tried to use ListView but this time even aligning row values with headers became a problem.

bahadir arslan
  • 4,535
  • 7
  • 44
  • 82

1 Answers1

0

have you tried this? https://pub.dev/packages/syncfusion_flutter_datagrid its have:

  • Stacked headers ,Summary row ,Paging, Loadmore
  • etc

enter image description here

pmatatias
  • 3,491
  • 3
  • 10
  • 30
  • Actually my path is always crossing with syncfusion package but as I know it was not free. However I checked again with your answer and saw there is a community license. So I will check this package again. – bahadir arslan Sep 17 '22 at 08:26
  • I am surprised that how this plugin fits all my needs. Thanks for the advice, probably I will spend weeks trying to reinvent the wheel. – bahadir arslan Sep 23 '22 at 11:13