hintStyle method

NikuTextField hintStyle(
  1. TextStyle textStyle
)

Stying of label using TextStyle

Equivalent to

TextFieldForm(
  decoration: InputDecoration(
    hintStyle: input
  )
)

Implementation

NikuTextField hintStyle(TextStyle textStyle) {
  // Input hint Style
  this._hint_color = textStyle.color;
  this._hint_backgroundColor = textStyle.backgroundColor;
  this._hint_fontSize = textStyle.fontSize;
  this._hint_fontWeight = textStyle.fontWeight;
  this._hint_fontStyle = textStyle.fontStyle;
  this._hint_letterSpacing = textStyle.letterSpacing;
  this._hint_wordSpacing = textStyle.wordSpacing;
  this._hint_height = textStyle.height;
  this._hint_foreground = textStyle.foreground;
  this._hint_background = textStyle.background;
  this._hint_shadows = textStyle.shadows;
  this._hint_fontFeatures = textStyle.fontFeatures;
  this._hint_textDecoration = textStyle.decoration;
  this._hint_textDecorationColor = textStyle.decorationColor;
  this._hint_textDecorationThickness = textStyle.decorationThickness;
  this._hint_fontFamily = textStyle.fontFamily;
  this._hint_fontFamilyFallback = textStyle.fontFamilyFallback;
  this._hint_textBaseline = textStyle.textBaseline;

  return this;
}