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(
Expanded( child: Align( alignment: FractionalOffset.bottomCenter, child: Padding( padding: EdgeInsets.only(bottom: 10.0), child: //Your widget here, ), ), ),