JeaButton constructor

const JeaButton({
  1. Key? key,
  2. required String text,
  3. void onTap()?,
  4. Color? textColor,
  5. TextStyle? textStyle,
  6. Color? hoverColor,
  7. Color? backgroundColor,
  8. void onLongPress()?,
})

Implementation

const JeaButton({
  super.key,
  required this.text,
  this.onTap,
  this.textColor,
  this.textStyle,
  this.hoverColor,
  this.backgroundColor,
  this.onLongPress,
});