I\'m trying to bottom-center a widget at the bottom of a Column, but it keeps aligning to the left.
return new Column( new Stack( new Positioned(
The easiest and the correct way to do it - use Spacer()
Example:
Column( children: [ SomeWidgetOnTheTop(), Spacer(), SomeCenterredBottomWidget(), ], );