Questions tagged [paginateddatatable]

32 questions
0
votes
1 answer

Flutter - Paginated Datatable bottom font coloring and layout

I've got here my paginated data table wrapped with a theme widget to add the backgroundcolor: return Theme( data: Theme.of(context).copyWith( cardColor: Color(0xff1D202C), dividerColor: Color(0xff333333), ), child:…
Exusiai
  • 77
  • 1
  • 9
0
votes
1 answer

PaginatedDataTable & Provider

My PaginatedDataTable widget: var shopData = ShopDataSource(); return PaginatedDataTable( header: Text('Shops'), columns: [ DataColumn(label: Text('Shop')), DataColumn(label: Text('Type')), DataColumn(label: Text('Location')), …
Subair K
  • 1,760
  • 1
  • 11
  • 31
1 2
3