BaseOutlineButton constructor

const BaseOutlineButton({
  1. Key? key,
  2. double width = double.infinity,
  3. double height = 44,
  4. EdgeInsetsGeometry? padding,
  5. MainAxisAlignment mainAxisAlignment = MainAxisAlignment.center,
  6. Color? backgroundColor,
  7. Widget? icon,
  8. Widget? title,
  9. double borderWidth = 1,
  10. double borderRadius = 22,
  11. Color? borderColor,
  12. List<BoxShadow>? boxShadow,
  13. VoidCallback? onPressed,
})

Implementation

const BaseOutlineButton(
    {super.key,
    this.width = double.infinity,
    this.height = 44,
    this.padding,
    this.mainAxisAlignment = MainAxisAlignment.center,
    this.backgroundColor,
    this.icon,
    this.title,
    this.borderWidth = 1,
    this.borderRadius = 22,
    this.borderColor,
    this.boxShadow,
    this.onPressed});