SIconButton constructor

const SIconButton({
  1. Key? key,
  2. void onTap(
    1. Offset offset
    )?,
  3. double? size,
  4. Color? color,
  5. Color? splashColor,
  6. BorderRadius? splashBorderRadius,
  7. IconData? iconData,
  8. bool isActive = true,
  9. Widget? customIcon,
  10. String? label,
})

Implementation

const SIconButton({
  super.key,
  this.onTap,
  this.size,
  this.color,
  this.splashColor,
  this.splashBorderRadius,
  this.iconData,
  this.isActive = true,
  this.customIcon,
  this.label,
});