bottomCenter method
Apply widget to bottom center
Equivalent to:
Align(
alignment: Alignment.bottomCenter
)
Implementation
Niku bottomCenter() {
_widget = Align(
alignment: Alignment.bottomCenter,
child: _widget,
);
return this;
}