FormItemSubmit constructor

const FormItemSubmit(
  1. String label, {
  2. VoidCallback? onPressed,
  3. Color? backgroundColor,
  4. Color? color,
  5. EdgeInsetsGeometry padding = const EdgeInsets.symmetric(vertical: 10),
  6. double height = 60,
  7. double fontSize = 18,
  8. bool dense = false,
  9. bool enabled = true,
  10. IconData? icon,
  11. ButtonStyle? style,
  12. Color? disabledColor,
  13. Color? disabledBackgroundColor,
  14. double borderRadius = 8.0,
  15. Color? borderColor,
  16. double width = 0.0,
})

Implementation

const FormItemSubmit(
  this.label, {
  this.onPressed,
  this.backgroundColor,
  this.color,
  this.padding = const EdgeInsets.symmetric(vertical: 10),
  this.height = 60,
  this.fontSize = 18,
  this.dense = false,
  this.enabled = true,
  this.icon,
  this.style,
  this.disabledColor,
  this.disabledBackgroundColor,
  this.borderRadius = 8.0,
  this.borderColor,
  this.width = 0.0,
});