hoverColor method

NikuTextField hoverColor(
  1. Color color
)

The base fill color of the decoration's container color when hovered

Equivalent to

TextFormField(
  decoration: InputDecoration(
    hoverColor: input
  )
)

Implementation

NikuTextField hoverColor(Color color) {
  this._input_hoverColor = color;

  return this;
}