getStyle static method

TextStyle getStyle({
  1. TextStyle? textStyle,
  2. int fontWeight = 500,
  3. bool muted = false,
  4. bool xMuted = false,
  5. double letterSpacing = 0.15,
  6. Color? color,
  7. TextDecoration decoration = TextDecoration.none,
  8. double? height,
  9. double wordSpacing = 0,
  10. double? fontSize,
})

Implementation

static TextStyle getStyle(
    {TextStyle? textStyle,
    int fontWeight = 500,
    bool muted = false,
    bool xMuted = false,
    double letterSpacing = 0.15,
    Color? color,
    TextDecoration decoration = TextDecoration.none,
    double? height,
    double wordSpacing = 0,
    double? fontSize}) {
  double? finalFontSize = fontSize ?? textStyle?.fontSize;

  Color? finalColor;
  if (color == null) {
    Color themeColor =
        FuAppTheme.getThemeFromThemeMode().colorScheme.onBackground;
    finalColor = xMuted
        ? themeColor.withAlpha(160)
        : (muted ? themeColor.withAlpha(200) : themeColor);
  } else {
    finalColor = xMuted
        ? color.withAlpha(160)
        : (muted ? color.withAlpha(200) : color);
  }
//this is main TextStyle
  return TextStyle(
      fontSize: finalFontSize,
      fontWeight: _defaultFontWeight[fontWeight] ?? FontWeight.w400,
      letterSpacing: letterSpacing,
      color: finalColor,
      decoration: decoration,
      height: height,
      fontFamily: _fontFamily,
      wordSpacing: wordSpacing);
}