I was working on this simple app and I can't seem to change the width and height properties of a raised button, I also tried using a flat button but it doesn't work either.Here's a screenshot
Row (mainAxisAlignment: MainAxisAlignment.spaceEvenly,
children: <Widget>[
RaisedButton(
height: 20,
color: Colors.green,
onPressed: () {
setState(() { });
},
Error message: The named parameter 'height' isn't defined. Try correcting the name to an existing named parameter's name, or defining a named parameter with the name 'height'.