CircularIconLabel constructor

const CircularIconLabel({
  1. Key? key,
  2. required String label,
  3. required IconData icon,
  4. Color? iconColor,
  5. double iconSize = 24,
  6. Color? backgroundColor,
  7. double labelWidth = 70,
  8. double circleSize = 50,
  9. VoidCallback? onTap,
  10. TextStyle? textStyle,
  11. bool useBoxShadow = true,
})

Implementation

const CircularIconLabel(
    {super.key,
    required this.label,
    required this.icon,
    this.iconColor,
    this.iconSize = 24,
    this.backgroundColor,
    this.labelWidth = 70,
    this.circleSize = 50,
    this.onTap,
    this.textStyle,
    this.useBoxShadow = true});