FSimpleButton constructor

const FSimpleButton({
  1. Key? key,
  2. Color? backgroundColor = Colors.transparent,
  3. Color? splashColor,
  4. Color? highlightColor,
  5. double elevation = 0,
  6. double? width,
  7. double? height,
  8. EdgeInsetsGeometry? margin = EdgeInsets.zero,
  9. EdgeInsetsGeometry? padding,
  10. Widget? child,
  11. VoidCallback? onTap,
  12. EVisibility visibility = EVisibility.visible,
  13. ShapeBorder? shape,
})

Implementation

const FSimpleButton({
  Key? key,
  this.backgroundColor = Colors.transparent,
  this.splashColor,
  this.highlightColor,
  this.elevation = 0,
  this.width,
  this.height,
  this.margin = EdgeInsets.zero,
  this.padding,
  this.child,
  this.onTap,
  this.visibility = EVisibility.visible,
  this.shape,
}) : super(key: key);