lightKeyboard method

NikuTextField lightKeyboard()

The appearance of the keyboard, only honored on iOS devices

Using Brightness.light

Equivalent to

TextFormField(
  keyboardAppearance: Brightness.light
)

Implementation

NikuTextField lightKeyboard() {
  this._keyboardAppearance = Brightness.light;

  return this;
}