scrollP method

NikuTextField scrollP(
  1. double padding
)

Configures padding to edges surrounding a Scrollable when the Textfield scrolls into view Shorten for scrollPadding accepting shorten padding applying to all side

Equivalent to

TextFormField(
  scrollPadding: EdgeInsets.all(input)
)

Implementation

NikuTextField scrollP(double padding) {
  this._scrollPadding = EdgeInsets.all(padding);

  return this;
}