CustomButtons constructor

const CustomButtons({
  1. Key? key,
  2. required String actionIcon,
  3. bool miniButton = false,
  4. ValueNotifier<bool>? isLoading,
  5. bool fillButton = false,
  6. required IconPosition position,
  7. required String buttonText,
  8. Widget? leading,
  9. Widget? trailing,
  10. TextStyle? textStyle,
  11. int? borderRadius,
  12. Color? buttonColor,
})

Implementation

const CustomButtons(
    {super.key,
    required this.actionIcon,
    this.miniButton = false,
    this.isLoading,
    this.fillButton = false,
    required this.position,
    required this.buttonText,
    this.leading,
    this.trailing,
    this.textStyle,
    this.borderRadius,
    this.buttonColor});