suffixStyle method

NikuTextField suffixStyle(
  1. TextStyle textStyle
)

The style to use for the suffixText

Equivalent to

TextFormField(
  decoration: InputDecoration(
    prefixStyle: input
  )
)

Implementation

NikuTextField suffixStyle(TextStyle textStyle) {
  // Input Label Style
  _suffix_color = textStyle.color;
  _suffix_backgroundColor = textStyle.backgroundColor;
  _suffix_fontSize = textStyle.fontSize;
  _suffix_fontWeight = textStyle.fontWeight;
  _suffix_fontStyle = textStyle.fontStyle;
  _suffix_letterSpacing = textStyle.letterSpacing;
  _suffix_wordSpacing = textStyle.wordSpacing;
  _suffix_height = textStyle.height;
  _suffix_foreground = textStyle.foreground;
  _suffix_background = textStyle.background;
  _suffix_shadows = textStyle.shadows;
  _suffix_fontFeatures = textStyle.fontFeatures;
  _suffix_textDecoration = textStyle.decoration;
  _suffix_textDecorationColor = textStyle.decorationColor;
  _suffix_textDecorationThickness = textStyle.decorationThickness;
  _suffix_fontFamily = textStyle.fontFamily;
  _suffix_fontFamilyFallback = textStyle.fontFamilyFallback;
  _suffix_textBaseline = textStyle.textBaseline;

  return this;
}