CyberLabel constructor

const CyberLabel({
  1. Key? key,
  2. dynamic text,
  3. String? format,
  4. TextStyle? style,
  5. TextAlign? textalign,
  6. Color? textcolor,
  7. Color? backgroundColor,
  8. dynamic isVisible = true,
  9. bool isIcon = false,
  10. double? iconSpacing,
  11. double? iconSize,
  12. dynamic onLeaver(
    1. dynamic
    )?,
  13. bool? showRipple,
  14. Color? rippleColor,
  15. BorderRadius? rippleBorderRadius,
  16. EdgeInsets? tapPadding,
  17. int? maxLines,
  18. TextOverflow? overflow,
})

Implementation

const CyberLabel({
  super.key,
  this.text,
  this.format,
  this.style,
  this.textalign,
  this.textcolor,
  this.backgroundColor,
  this.isVisible = true,
  this.isIcon = false,
  this.iconSpacing,
  this.iconSize,
  this.onLeaver,
  this.showRipple,
  this.rippleColor,
  this.rippleBorderRadius,
  this.tapPadding,
  this.maxLines,
  this.overflow,
});