VentButtonStyle.outlined constructor
VentButtonStyle.outlined({
- TextStyle? customTextStyle,
- Color? outlinedColor = VentColorSwatch.Primary,
- Color? splashColor,
- Color? shadowColor,
- Color? disabledColor,
- Color? textColor,
- double? width,
- double? height,
- EdgeInsets? padding,
- double? borderRadius,
- required ButtonSize buttonSize,
- bool? hideText,
- bool? showLeading,
- IconData? iconLeading,
- bool? showTrailing,
- IconData? iconTrailing,
- String? pathLeading,
- String? pathTrailing,
- ButtonAlign aligmentLeading = ButtonAlign.START,
- 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;