SfDataPagerThemeData constructor
SfDataPagerThemeData({
- Brightness? brightness,
- Color? backgroundColor,
- Color? itemColor,
- TextStyle? itemTextStyle,
- Color? selectedItemColor,
- TextStyle? selectedItemTextStyle,
- Color? disabledItemColor,
- TextStyle? disabledItemTextStyle,
- Color? itemBorderColor,
- double? itemBorderWidth,
- BorderRadiusGeometry? itemBorderRadius,
- Color? dropdownButtonBorderColor,
Create a SfDataPagerThemeData that's used to configure a SfDataPagerTheme.
Implementation
factory SfDataPagerThemeData(
{Brightness? brightness,
Color? backgroundColor,
Color? itemColor,
TextStyle? itemTextStyle,
Color? selectedItemColor,
TextStyle? selectedItemTextStyle,
Color? disabledItemColor,
TextStyle? disabledItemTextStyle,
Color? itemBorderColor,
double? itemBorderWidth,
BorderRadiusGeometry? itemBorderRadius,
Color? dropdownButtonBorderColor}) {
return SfDataPagerThemeData.raw(
brightness: brightness,
backgroundColor: backgroundColor,
itemColor: itemColor,
itemTextStyle: itemTextStyle,
selectedItemColor: selectedItemColor,
selectedItemTextStyle: selectedItemTextStyle,
disabledItemColor: disabledItemColor,
disabledItemTextStyle: disabledItemTextStyle,
itemBorderColor: itemBorderColor,
itemBorderWidth: itemBorderWidth,
itemBorderRadius: itemBorderRadius,
dropdownButtonBorderColor: dropdownButtonBorderColor);
}