VentButtonStyle.outlined constructor

VentButtonStyle.outlined({
  1. TextStyle? customTextStyle,
  2. Color? outlinedColor = VentColorSwatch.Primary,
  3. Color? splashColor,
  4. Color? shadowColor,
  5. Color? disabledColor,
  6. Color? textColor,
  7. double? width,
  8. double? height,
  9. EdgeInsets? padding,
  10. double? borderRadius,
  11. required ButtonSize buttonSize,
  12. bool? hideText,
  13. bool? showLeading,
  14. IconData? iconLeading,
  15. bool? showTrailing,
  16. IconData? iconTrailing,
  17. String? pathLeading,
  18. String? pathTrailing,
  19. ButtonAlign aligmentLeading = ButtonAlign.START,
  20. ButtonAlign aligmentTrailing = ButtonAlign.END,
})

Implementation

VentButtonStyle.outlined({
  this.customTextStyle,
  this.outlinedColor = VentColorSwatch.Primary,
  this.splashColor,
  this.shadowColor,
  this.disabledColor,
  this.textColor,
  this.width,
  this.height,
  this.padding,
  this.borderRadius,
  required this.buttonSize,
  this.hideText,
  this.showLeading,
  this.iconLeading,
  this.showTrailing,
  this.iconTrailing,
  this.pathLeading,
  this.pathTrailing,
  this.aligmentLeading = ButtonAlign.START,
  this.aligmentTrailing = ButtonAlign.END,
})  : buttonType = ButtonType.OUTLINED,
      primaryColor = VentColorSwatch.Gray.shade100;