tag1 function

TextStyle tag1()

The text style for a tag one

Implementation

TextStyle tag1() {
  return accessibility.accessFeatures.boldText == true
      ? GoogleFonts.getFont(fontChoice,
          fontSize: 13,
          fontWeight: FontWeight.w600,
          letterSpacing: 0.4,
          decoration: TextDecoration.none)
      : GoogleFonts.getFont(fontChoice,
          fontSize: 13,
          fontWeight: FontWeight.w500,
          letterSpacing: 1.0,
          decoration: TextDecoration.none);
}