PaginatedDataTable更改“每页行数”字符串

时间:2019-11-05 05:54:05

标签: android user-interface flutter datatable

我在我的应用程序中使用PaginatedDataTable,并且它运行正常。但是我想更改图像行中显示的“每页行数”的字符串。我想将其更改为“我的行”或“页面中的行”或...。 enter image description here

PaginatedDataTable(
  header: Text(widget.chartsInfo.title),
  rowsPerPage: _rowsPerPage,
  availableRowsPerPage: [5, 10, 15],
  columnSpacing: 15,
  onRowsPerPageChanged: (int value) {
    setState(() {
      _rowsPerPage = value;
    });
   },
   sortColumnIndex: _sortColumnIndex,
   sortAscending: _sortAscending,
   onSelectAll: _resultsDataSource._selectAll,
   columns: dataColumns,
   source: _resultsDataSource),```

1 个答案:

答案 0 :(得分:3)

我必须更改PaginatedDataTable.dart文件中的字符串。只需按住Ctrl并单击代码中的PaginatedDataTable,它就会打开PaginatedDataTable.dart文件。 搜索“每页行数”并进行更改。