h1 static method

TextStyle h1({
  1. FontWeight fontWeight = FontWeight.bold,
  2. Color? color,
  3. 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,
  );
}