ActionButtons constructor

const ActionButtons({
  1. Key? key,
  2. required VoidCallback onOutlinePressed,
  3. required VoidCallback onFilledPressed,
  4. Color? filledColor,
  5. Color? outlinedColor,
  6. Color? filledButtonBackgroundColor,
  7. Color? outlinedButtonBackgroundColor,
  8. Widget? filledButtonChild,
  9. Widget? outlinedButtonChild,
  10. TextStyle? textStyle,
  11. String? outlinedButtonText,
  12. String? filledButtonText,
  13. Color? filledButtonBorderColor,
  14. Color? outlinedButtonBorderColor,
  15. double? filledButtonWidth,
  16. double? outlinedButtonWidth,
  17. double? filledButtonHeight,
  18. double? outlinedButtonHeight,
  19. double? filledButtonBorderRadius,
  20. 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,
});