STextButton constructor

const STextButton({
  1. Key? key,
  2. void onTap(
    1. Offset offset
    )?,
  3. Color? backgroundColor,
  4. String? buttonTitle,
  5. TextStyle? textStyle,
  6. double? backgroundColorOpacity,
  7. BorderRadiusGeometry? buttonBorderRadius,
  8. BoxShape? buttonShape,
  9. EdgeInsetsGeometry? buttonContentPadding,
  10. Widget? prefixIcon,
  11. Widget? midIcon,
  12. Widget? suffixIcon,
  13. double? scale,
  14. double? height,
  15. double? width,
  16. BoxBorder? border,
})

Implementation

const STextButton({
  super.key,
  this.onTap,
  this.backgroundColor,
  this.buttonTitle,
  this.textStyle,
  this.backgroundColorOpacity,
  this.buttonBorderRadius,
  this.buttonShape,
  this.buttonContentPadding,
  this.prefixIcon,
  this.midIcon,
  this.suffixIcon,
  this.scale,
  this.height,
  this.width,
  this.border,
});