getHintStyle method

TextStyle getHintStyle()

Default text style for label and hint text.

Implementation

TextStyle getHintStyle() {
  return TextStyle(
    fontFamily: UFUtils.fontFamily, // TODO - 'Roboto',
    fontWeight: TextHelper.getFontWeight(fontWeight), //fontWeight ?? FontWeight.w300,
    height: 1.2,
    color: AppTheme.themeColors.hintText,
    fontSize: TextHelper.getTextSize(textSize),
  );
}