h1 static method
TextStyle
h1({
- FontWeight fontWeight = FontWeight.bold,
- Color? color,
- bool allowFontScaling = false,
Headline 1 text style
Implementation
static TextStyle h1({
FontWeight fontWeight = FontWeight.bold,
Color? color,
bool allowFontScaling = false,
}) {
return style(
fontSize: ScreenUtil.instance.isPhone ? 28 : 36,
fontWeight: fontWeight,
color: color,
allowFontScaling: allowFontScaling,
);
}