helperStyle method

NikuTextField helperStyle(
  1. TextStyle textStyle
)

Dtyling of hint using TextStyle

Equivalent to

TextFieldForm(
  decoration: InputDecoration(
    helperStyle: input
  )
)

Implementation

NikuTextField helperStyle(TextStyle textStyle) {
  // Input Label Style
  this._helper_color = textStyle.color;
  this._helper_backgroundColor = textStyle.backgroundColor;
  this._helper_fontSize = textStyle.fontSize;
  this._helper_fontWeight = textStyle.fontWeight;
  this._helper_fontStyle = textStyle.fontStyle;
  this._helper_letterSpacing = textStyle.letterSpacing;
  this._helper_wordSpacing = textStyle.wordSpacing;
  this._helper_height = textStyle.height;
  this._helper_foreground = textStyle.foreground;
  this._helper_background = textStyle.background;
  this._helper_shadows = textStyle.shadows;
  this._helper_fontFeatures = textStyle.fontFeatures;
  this._helper_textDecoration = textStyle.decoration;
  this._helper_textDecorationColor = textStyle.decorationColor;
  this._helper_textDecorationThickness = textStyle.decorationThickness;
  this._helper_fontFamily = textStyle.fontFamily;
  this._helper_fontFamilyFallback = textStyle.fontFamilyFallback;
  this._helper_textBaseline = textStyle.textBaseline;

  return this;
}