fullWidth method

Niku fullWidth()

Apply full width to self

Equivalent to:

SizedBox(
  width: double.infinity,
  height: double.infinity
)

Implementation

Niku fullWidth() => Niku(
      SizedBox(
          width: double.infinity,
          height: double.infinity,
          child: this._widget),
    );