createFooter property

CreateFooterCallBack? createFooter
final

createFooter is equivalent to createHeader. However, it is located at the bottom of the grid.

CreateFooter can also be passed an already provided widget for Pagination. Of course you can pass it to createHeader , but it's not a typical UI.

createFooter: (stateManager) {
  stateManager.setPageSize(100, notify: false); // default 40
  return PlutoPagination(stateManager);
},

Implementation

final CreateFooterCallBack? createFooter;