PagedListView constructor
const
PagedListView({
- required List<
DataRow> rows, - required List<
DataColumn> columns, - bool showSelect = true,
- bool showSort = true,
- IndexedWidgetBuilder? mobileItemBuilder,
- List<
Widget> ? selectedActions, - List<
Widget> ? actions, - ValueChanged<
bool?> ? onSelectAll, - int? rowsPerPage,
- VoidCallback? loadNext,
- int? sortColumnIndex,
- bool? sortAscending,
- RefreshCallback? onRefresh,
- bool isRowCountApproximate = false,
- double initialScrollOffset = 0,
- Widget? noItems,
- Widget? isLoading,
- List<
Widget> ? slivers,
Implementation
const PagedListView({
required this.rows,
required this.columns,
this.showSelect = true,
this.showSort = true,
this.mobileItemBuilder,
this.selectedActions,
this.actions,
this.onSelectAll,
this.rowsPerPage,
this.loadNext,
this.sortColumnIndex,
this.sortAscending,
this.onRefresh,
this.isRowCountApproximate = false,
this.initialScrollOffset = 0,
this.noItems,
this.isLoading,
this.slivers,
});