ButtonStylizedOutlineComponent constructor

const ButtonStylizedOutlineComponent({
  1. required Widget label,
  2. Color? textColor,
  3. Color? outlineColor,
  4. required Function onPressed,
  5. double borderRadius = 6,
  6. EdgeInsetsGeometry padding = const EdgeInsets.symmetric(horizontal: 28, vertical: 20),
  7. Key? key,
})

Implementation

const ButtonStylizedOutlineComponent(
    {required this.label,
    this.textColor,
    this.outlineColor,
    required this.onPressed,
    this.borderRadius = 6,
    this.padding = const EdgeInsets.symmetric(horizontal: 28, vertical: 20),
    Key? key})
    : super(key: key);