h5 static method
TextStyle
h5({
- FontWeight fontWeight = FontWeight.w500,
- Color? color,
- bool allowFontScaling = false,
Headline 5 text style
Implementation
static TextStyle h5({
FontWeight fontWeight = FontWeight.w500,
Color? color,
bool allowFontScaling = false,
}) {
return style(
fontSize: ScreenUtil.instance.isPhone ? 16 : 18,
fontWeight: fontWeight,
color: color,
allowFontScaling: allowFontScaling,
);
}