CustomOutlinedButton constructor

const CustomOutlinedButton({
  1. Key? key,
  2. required String text,
  3. VoidCallback? onTap,
  4. Color? textColor,
  5. Color? borderColor,
  6. double? width,
  7. double? height,
  8. double? borderRadius,
})

Implementation

const CustomOutlinedButton({
  super.key,
  required super.text,
  super.onTap,
  Color? textColor,
  Color? borderColor,
  super.width,
  super.height,
  super.borderRadius,
}) : super(
  textColor: textColor ?? Colors.blueAccent,
  backgroundColor: Colors.transparent,
  borderColor: borderColor ?? Colors.blueAccent,
  showBorder: true,
);