heading3 property

TextStyle get heading3

Smallest 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 heading3 => TextStyle(
      fontSize: 24,
      fontWeight: FontWeight.w500,
      height: 28 / 24,
      fontFamily: fontFamily,
      color: textColor,
    );