fixBlurryText function

TextStyle fixBlurryText(
  1. TextStyle style
)

Returns a TextStyle with FontFeature.proportionalFigures applied to fix blurry text.

Implementation

TextStyle fixBlurryText(TextStyle style) {
  return style.copyWith(
    fontFeatures: [const FontFeature.proportionalFigures()],
  );
}