hintBackgroundColor method

NikuTextField hintBackgroundColor(
  1. Color backgroundColor
)

Set background color of text

Equivalent to

TextStyle(backgroundColor: input)

Implementation

NikuTextField hintBackgroundColor(Color backgroundColor) {
  this._hint_backgroundColor = backgroundColor;

  return this;
}