topRight method
Apply widget to top right
Equivalent to:
Align(
alignment: Alignment.topRight
)
Implementation
Niku topRight() {
_widget = Align(
alignment: Alignment.topRight,
child: _widget,
);
return this;
}
Apply widget to top right
Equivalent to:
Align(
alignment: Alignment.topRight
)
Niku topRight() {
_widget = Align(
alignment: Alignment.topRight,
child: _widget,
);
return this;
}