Make A Button Full Width in Flutter

Use the SizedBox widget, which enforces the child to match its parent size:

SizedBox.expand(
  child: new RaisedButton(...),
)

Using the width or height it only limits the streching in particular axis:

SizedBox(
  width: double.infinity,
  child: RaisedButton(...),
)