labelLarge property

TextStyle get labelLarge

Largest of the label styles.

Label styles are smaller, utilitarian styles, used for areas of the UI such as text inside of components or very small supporting text in the content body, like captions.

Used for text on ZetaButton.

Implementation

TextStyle get labelLarge => TextStyle(
      fontSize: 16,
      fontWeight: FontWeight.w500,
      height: 24 / 16,
      fontFamily: fontFamily,
      color: textColor,
    );