How to set the width of a RaisedButton in Flutter?

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

    Wrap RaisedButton inside Container and give width to Container Widget.

    e.g

     Container(
     width : 200,
     child : RaisedButton(
             child :YourWidget ,
             onPressed(){}
          ),
        )
    

提交回复
热议问题