fixedFontStyle property

TextStyle get fixedFontStyle

Implementation

TextStyle get fixedFontStyle => fixBlurryText(
      regularTextStyle.copyWith(
        fontFamily: 'RobotoMono',
        // Slightly smaller for fixes font text since it will appear larger
        // to begin with.
        fontSize: defaultFontSize - 1,
      ),
    );