How to set the width of a RaisedButton in Flutter?

后端 未结 20 1903
傲寒
傲寒 2021-01-30 06:01

I have seen that I can\'t set the width of a RaisedButton in Flutter. If I have well understood, I should put the RaisedButton into a SizedBox

20条回答
  •  鱼传尺愫
    2021-01-30 06:35

    If you have a button inside a Column() and want the button to take maximum width, set:

    crossAxisAlignment: CrossAxisAlignment.stretch

    in your Column widget. Now everything under this Column() will have maximum available width

提交回复
热议问题