ChartActionButtonTheme constructor
const
ChartActionButtonTheme({
- double? height,
- double? fontSize,
- EdgeInsetsGeometry? padding,
- double? borderRadius,
- double? borderWidth,
- Color? lightSelectedBackgroundColor,
- Color? lightUnselectedBackgroundColor,
- Color? lightSelectedTextColor,
- Color? lightUnselectedTextColor,
- Color? lightBorderColor,
- Color? darkSelectedBackgroundColor,
- Color? darkUnselectedBackgroundColor,
- Color? darkSelectedTextColor,
- Color? darkUnselectedTextColor,
- Color? darkBorderColor,
Implementation
const ChartActionButtonTheme({
this.height,
this.fontSize,
this.padding,
this.borderRadius,
this.borderWidth,
// Light theme
this.lightSelectedBackgroundColor,
this.lightUnselectedBackgroundColor,
this.lightSelectedTextColor,
this.lightUnselectedTextColor,
this.lightBorderColor,
// Dark theme
this.darkSelectedBackgroundColor,
this.darkUnselectedBackgroundColor,
this.darkSelectedTextColor,
this.darkUnselectedTextColor,
this.darkBorderColor,
});