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
Short and sweet solution for a full-width button:
Row( children: [ Expanded( child: ElevatedButton(...), ), ], )