Flutter: How to make a button expand to the size of its parent?

前端 未结 2 1487
情歌与酒
情歌与酒 2021-02-11 14:29

I am trying to create square buttons, but Expanded doesn\'t seem to work the same as it does with containers. Take the following code for example

new Expanded(
          


        
2条回答
  •  终归单人心
    2021-02-11 15:07

    Add the crossAxisAlignment property to your Row;

    crossAxisAlignment: CrossAxisAlignment.stretch
    

提交回复
热议问题