FlutterOutlineButton constructor

const FlutterOutlineButton({
  1. Key? key,
  2. required String buttonText,
  3. required Function onTap,
  4. Color? textColor = Colors.blue,
  5. Color? buttonColor = Colors.blue,
  6. double buttonHeight = 45.00,
  7. double buttonWidth = 300.00,
  8. Color primaryButtonColor = Colors.blue,
  9. double buttonRadius = 5.0,
  10. double buttonBorderWidth = 1.0,
})

Implementation

const FlutterOutlineButton({
  Key? key,
  required this.buttonText,
  required this.onTap,
  this.textColor = Colors.blue,
  this.buttonColor = Colors.blue,
  this.buttonHeight = 45.00,
  this.buttonWidth = 300.00,
  this.primaryButtonColor = Colors.blue,
  this.buttonRadius = 5.0,
  this.buttonBorderWidth = 1.0,
}) : super(key: key);