Flutter UI: Rows per page no selection possible #612

This commit is contained in:
Hillel Coren 2023-11-28 16:49:44 +02:00
parent e41a5ea0b6
commit f5be5b3f33
1 changed files with 1 additions and 2 deletions

View File

@ -434,8 +434,7 @@ class AppPaginatedDataTableState extends State<AppPaginatedDataTable> {
math.min(_rowCount, _firstRowIndex + widget.rowsPerPage);
if (widget.onRowsPerPageChanged != null) {
final List<Widget> availableRowsPerPage = widget.availableRowsPerPage
.where(
(int value) => value <= _rowCount || value == widget.rowsPerPage)
//.where((int value) => value <= _rowCount || value == widget.rowsPerPage)
.map<DropdownMenuItem<int>>((int value) {
return DropdownMenuItem<int>(
value: value,