How to set the width of a RaisedButton in Flutter?

后端 未结 20 2392
傲寒
傲寒 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:32

    Short and sweet solution for a full-width button:

    Row(
      children: [
        Expanded(
          child: ElevatedButton(...),
        ),
      ],
    )
    

提交回复
热议问题