PhoenixButton constructor

const PhoenixButton({
  1. Key? key,
  2. required Widget content,
  3. MaterialStateProperty<Color>? buttonMaterialStateProperty,
  4. Color? buttonColor,
  5. double? buttonElevation,
  6. Color? disableButtonColor,
  7. VoidCallback? onPressed,
  8. double? radius,
  9. EdgeInsets? margin,
  10. EdgeInsets? padding,
  11. double? height,
  12. double? width,
  13. BorderSide? borderSide,
  14. Color? textColor,
})

Implementation

const PhoenixButton({
  Key? key,
  required this.content,
  this.buttonMaterialStateProperty,
  this.buttonColor,
  this.buttonElevation,
  this.disableButtonColor,
  this.onPressed,
  this.radius,
  this.margin,
  this.padding,
  this.height,
  this.width,
  this.borderSide,
  this.textColor,
}) : super(key: key);