tapTargetSize method

NikuButton tapTargetSize(
  1. MaterialTapTargetSize tapTargetSize
)

Configures the tap target and layout size of certain Material widgets

Equivalent to

TextButton(
  tapTargetSize: input
)

Implementation

NikuButton tapTargetSize(MaterialTapTargetSize tapTargetSize) {
  this._tapTargetSize = tapTargetSize;

  return this;
}