heading1 property

TextStyle get heading1

Largest of the headline styles.

Headline styles are smaller than display styles. They're best-suited for short, high-emphasis text on smaller screens.

Implementation

TextStyle get heading1 => TextStyle(
      fontSize: 32,
      fontWeight: FontWeight.w500,
      height: 36 / 32,
      fontFamily: fontFamily,
      color: textColor,
    );