If you want globally change the height and the minWidth of all your RaisedButton
s, then you can override ThemeData
inside your MaterialApp
:
@override
Widget build(BuildContext context) {
return MaterialApp(
...
theme: ThemeData(
...
buttonTheme: ButtonThemeData(
height: 46,
minWidth: 100,
),
));
}