Flutter: Trying to bottom-center an item in a Column, but it keeps left-aligning

后端 未结 11 2164
广开言路
广开言路 2020-12-07 18:54

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(
              


        
11条回答
  •  挽巷
    挽巷 (楼主)
    2020-12-07 19:22

    1) You can use an Align widget, with FractionalOffset.bottomCenter.

    2) You can also set left: 0.0 and right: 0.0 in the Positioned.

提交回复
热议问题