SmallOutlineButton constructor
const
SmallOutlineButton({
- Key? key,
- String? title,
- VoidCallback? onTap,
- bool isEnable = true,
- Color? lineColor,
- Color? textColor,
- double? radius,
- double? width,
- double fontSize = 14,
- FontWeight fontWeight = FontWeight.w600,
- ButtonConfig? themeData,
传入属性优先级最高,未传入的走默认配置,更多请看BrnSmallSecondaryOutlineButtonConfig.defaultConfig
Implementation
const SmallOutlineButton({
Key? key,
this.title,
this.onTap,
this.isEnable = true,
this.lineColor,
this.textColor,
this.radius,
this.width,
this.fontSize = 14,
this.fontWeight = FontWeight.w600,
this.themeData,
}) : super(key: key);