WOITextButton constructor

const WOITextButton({
  1. Key? key,
  2. VoidCallback? onTap,
  3. double? heigth,
  4. double? width,
  5. bool isDisabled = false,
  6. WOIButtonStyle? buttonStyle,
  7. required String text,
  8. TextStyle? textStyle,
})

The all in one button

Implementation

const WOITextButton({
  super.key,
  this.onTap,
  this.heigth,
  this.width,
  this.isDisabled = false,
  this.buttonStyle,
  required this.text,
  this.textStyle,
});