button1 function

TextStyle button1()

The text style for a button one

Implementation

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