FieldButton constructor

const FieldButton({
  1. Key? key,
  2. String? text,
  3. Widget? child,
  4. TextAlign textAlign = TextAlign.start,
  5. int? maxLines = 1,
  6. VoidCallback? onPressed,
  7. VoidCallback? onTrailingPressed,
  8. Widget? trailing,
  9. TextStyle? style,
  10. Widget? subtitle,
  11. Widget? headline,
  12. bool warning = false,
  13. bool danger = false,
  14. BorderSide? border,
})

Implementation

const FieldButton({
  super.key,
  this.text,
  this.child,
  this.textAlign = TextAlign.start,
  this.maxLines = 1,
  this.onPressed,
  this.onTrailingPressed,
  this.trailing,
  this.style,
  this.subtitle,
  this.headline,
  this.warning = false,
  this.danger = false,
  this.border,
});