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
RaisedButton
SizedBox
Wrap RaisedButton inside Container and give width to Container Widget.
e.g
Container( width : 200, child : RaisedButton( child :YourWidget , onPressed(){} ), )