Latest source merged from Syncfusion

This commit is contained in:
pipeline 2021-09-16 09:30:20 +05:30
Родитель 41ecffbb13
Коммит 04a48971ab
1 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

@ -167,7 +167,7 @@ class EmployeeDataSource extends DataGridSource {
return DataGridRowAdapter(
cells: row.getCells().map<Widget>((dataGridCell) {
if (dataGridCell.columnName == 'id') {
final int index = dataGridRows.indexOf(row);
final int index = effectiveRows.indexOf(row);
return Container(
color: (index % 2 != 0) ? Colors.blueAccent : Colors.transparent,
alignment: Alignment.centerRight,