displayMedium property

TextStyle get displayMedium

Middle size of the display styles.

As the largest text on the screen, display styles are reserved for short, important text or numerals. They work best on large screens.

Implementation

TextStyle get displayMedium => TextStyle(
      fontSize: 44,
      fontWeight: FontWeight.w300,
      height: 52 / 44,
      fontFamily: fontFamily,
      color: textColor,
    );