scrollPadding method

NikuTextField scrollPadding(
  1. EdgeInsets padding
)

Configures padding to edges surrounding a Scrollable when the Textfield scrolls into view

Equivalent to

TextFormField(
  scrollPadding: input
)

Implementation

NikuTextField scrollPadding(EdgeInsets padding) {
  this._scrollPadding = padding;

  return this;
}