topCenter method
Apply widget to top center
Equivalent to:
Align(
alignment: Alignment.topCenter
)
Implementation
Niku topCenter() => Niku(Align(
alignment: Alignment.topCenter,
child: this._widget,
));
Apply widget to top center
Equivalent to:
Align(
alignment: Alignment.topCenter
)
Niku topCenter() => Niku(Align(
alignment: Alignment.topCenter,
child: this._widget,
));