SFCircularButton constructor

const SFCircularButton({
  1. required IconData icon,
  2. required VoidCallback onPressed,
  3. ComponentSize size = ComponentSize.md,
  4. Color? iconColor,
  5. Color? backgroundColor,
  6. bool disabled = false,
  7. Key? key,
})

Implementation

const SFCircularButton({
  required this.icon,
  required this.onPressed,
  this.size = ComponentSize.md,
  this.iconColor,
  this.backgroundColor,
  this.disabled = false,
  super.key,
});