h3 static method
TextStyle
h3({
- FontWeight fontWeight = FontWeight.w600,
- Color? color,
- bool allowFontScaling = false,
Headline 3 text style
Implementation
static TextStyle h3({
FontWeight fontWeight = FontWeight.w600,
Color? color,
bool allowFontScaling = false,
}) {
return style(
fontSize: ScreenUtil.instance.isPhone ? 20 : 24,
fontWeight: fontWeight,
color: color,
allowFontScaling: allowFontScaling,
);
}