Create a rounded button / button with border-radius in Flutter

1. Solution Summary FlatButton and RaisedButton are deprecated. So, you can use shape which placed in the style property, for TextButton and ElevatedButton. There are some changes since Flutter 2.0: style: the property type has changed to ButtonStyle shape: the property type has changed to MaterialStateProperty<T> 2. Rounded Button Inside the style property exists the … Read more