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(
1) You can use an Align widget, with FractionalOffset.bottomCenter.
FractionalOffset.bottomCenter
2) You can also set left: 0.0 and right: 0.0 in the Positioned.
left: 0.0
right: 0.0
Positioned