topCenter method

NikuStack topCenter()

Apply widget to top center

Equivalent to:

Stack(
  alignment: AlignmentDirectional.topCenter
)

Implementation

NikuStack topCenter() {
  this._alignment = AlignmentDirectional.topCenter;

  return this;
}