-
Notifications
You must be signed in to change notification settings - Fork 900
Description
Hi, I'm using the SfDataGrid from its package and SfDataGridTheme from the core package. I applied the filter and sorting icons but, while you can change the color of the sorting icon with sortIconColor property, it seems that I can't change the default icon color of the filter one.
Code:
data: SfDataGridThemeData(
headerColor: Theme.of(context).primaryColor,
sortIconColor: Colors.white),
child: SfDataGrid
Also, another problem. As you can see on the screenshot, the column "NAME" is aligned to the content below because I applied a padding of 55 to its left, while I left "SURNAME" column as it initially was. I'm trying to achieve the first result without use manual padding, because when I'm going to use another screen, it will be surely different.
Without the filter and sort icons, the text is centered with the cell below, but the icons move the column text to the left. Is it possible to solve it?
