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
  this._suffix_color = textStyle.color;
  this._suffix_backgroundColor = textStyle.backgroundColor;
  this._suffix_fontSize = textStyle.fontSize;
  this._suffix_fontWeight = textStyle.fontWeight;
  this._suffix_fontStyle = textStyle.fontStyle;
  this._suffix_letterSpacing = textStyle.letterSpacing;
  this._suffix_wordSpacing = textStyle.wordSpacing;
  this._suffix_height = textStyle.height;
  this._suffix_foreground = textStyle.foreground;
  this._suffix_background = textStyle.background;
  this._suffix_shadows = textStyle.shadows;
  this._suffix_fontFeatures = textStyle.fontFeatures;
  this._suffix_textDecoration = textStyle.decoration;
  this._suffix_textDecorationColor = textStyle.decorationColor;
  this._suffix_textDecorationThickness = textStyle.decorationThickness;
  this._suffix_fontFamily = textStyle.fontFamily;
  this._suffix_fontFamilyFallback = textStyle.fontFamilyFallback;
  this._suffix_textBaseline = textStyle.textBaseline;

  return this;
}