button static method
TextStyle
button({
- FontWeight fontWeight = FontWeight.w600,
- Color? color,
- bool allowFontScaling = false,
Button text style
Implementation
static TextStyle button({
FontWeight fontWeight = FontWeight.w600,
Color? color,
bool allowFontScaling = false,
}) {
return style(
fontSize: 14,
fontWeight: fontWeight,
color: color,
letterSpacing: 0.5,
allowFontScaling: allowFontScaling,
);
}