WOIParallalogramButton constructor

const WOIParallalogramButton({
  1. Key? key,
  2. VoidCallback? onPressed,
  3. Color buttonColor = Colors.black,
  4. Color? borderColor,
  5. double borderWdth = 1,
  6. double height = 50,
  7. double? width,
  8. List<BoxShadow>? boxShadow,
  9. double tilt = 10,
  10. required String text,
  11. TextStyle? textStyle,
  12. EdgeInsets? textMargin,
  13. TiltSide? tiltSide = TiltSide.right,
  14. Gradient? gradient,
})

Implementation

const WOIParallalogramButton({
  super.key,
  this.onPressed,
  this.buttonColor = Colors.black,
  this.borderColor,
  this.borderWdth = 1,
  this.height = 50,
  this.width,
  this.boxShadow,
  this.tilt = 10,
  required this.text,
  this.textStyle,
  this.textMargin,
  this.tiltSide = TiltSide.right,
  this.gradient,
});