AuiSimpleButton constructor

const AuiSimpleButton({
  1. Key? key,
  2. ButtonRadiusType? borderRadius,
  3. Color backgroundColor = Colors.black87,
  4. double itemGap = 10,
  5. TextStyle? textStyle,
  6. double buttonWidth = 500,
  7. void onPressed()?,
})

Implementation

const AuiSimpleButton({
  Key? key,
  this.borderRadius,
  this.backgroundColor = Colors.black87,
  this.itemGap = 10,
  this.textStyle,
  this.buttonWidth = 500,
  this.onPressed,
}) : super(key: key);