ActionButtons constructor
const
ActionButtons({
- Key? key,
- required VoidCallback onOutlinePressed,
- required VoidCallback onFilledPressed,
- Color? filledColor,
- Color? outlinedColor,
- Color? filledButtonBackgroundColor,
- Color? outlinedButtonBackgroundColor,
- Widget? filledButtonChild,
- Widget? outlinedButtonChild,
- TextStyle? textStyle,
- String? outlinedButtonText,
- String? filledButtonText,
- Color? filledButtonBorderColor,
- Color? outlinedButtonBorderColor,
- double? filledButtonWidth,
- double? outlinedButtonWidth,
- double? filledButtonHeight,
- double? outlinedButtonHeight,
- double? filledButtonBorderRadius,
- double? outlinedButtonBorderRadius,
Implementation
const ActionButtons({
super.key,
required this.onOutlinePressed,
required this.onFilledPressed,
this.filledColor,
this.outlinedColor,
this.filledButtonBackgroundColor,
this.outlinedButtonBackgroundColor,
this.filledButtonChild,
this.outlinedButtonChild,
this.textStyle,
this.outlinedButtonText,
this.filledButtonText,
this.filledButtonBorderColor,
this.outlinedButtonBorderColor,
this.filledButtonWidth,
this.outlinedButtonWidth,
this.filledButtonHeight,
this.outlinedButtonHeight,
this.filledButtonBorderRadius,
this.outlinedButtonBorderRadius,
});